~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to storage/innobase/include/rem0types.h

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/************************************************************************
 
2
Record manager global types
 
3
 
 
4
(c) 1994-1996 Innobase Oy
 
5
 
 
6
Created 5/30/1994 Heikki Tuuri
 
7
*************************************************************************/
 
8
 
 
9
#ifndef rem0types_h
 
10
#define rem0types_h
 
11
 
 
12
/* We define the physical record simply as an array of bytes */
 
13
typedef byte    rec_t;
 
14
 
 
15
/* Maximum values for various fields (for non-blob tuples) */
 
16
#define REC_MAX_N_FIELDS        (1024 - 1)
 
17
#define REC_MAX_HEAP_NO         (2 * 8192 - 1)
 
18
#define REC_MAX_N_OWNED         (16 - 1)
 
19
 
 
20
#endif