~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/base.h

Merged up with build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define HA_OPEN_WAIT_IF_LOCKED          1
35
35
#define HA_OPEN_IGNORE_IF_LOCKED        2
36
36
#define HA_OPEN_TMP_TABLE               4       /* Table is a temp table */
37
 
#define HA_OPEN_ABORT_IF_CRASHED        16
38
 
#define HA_OPEN_FOR_REPAIR              32      /* open even if crashed */
39
37
/* Internal temp table, used for temporary results */
40
38
#define HA_OPEN_INTERNAL_TABLE          512
41
39
 
81
79
enum ha_key_alg {
82
80
  HA_KEY_ALG_UNDEF=     0,              /* Not specified (old file) */
83
81
  HA_KEY_ALG_BTREE=     1,              /* B-tree, default one          */
84
 
  HA_KEY_ALG_RTREE=     2,              /* R-tree, for spatial searches */
85
 
  HA_KEY_ALG_HASH=      3,              /* HASH keys (HEAP tables) */
86
 
  HA_KEY_ALG_FULLTEXT=  4               /* FULLTEXT (MyISAM tables) */
 
82
  HA_KEY_ALG_HASH=      3               /* HASH keys (HEAP tables) */
87
83
};
88
84
 
89
85
        /* Index and table build methods */