~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/base.h

  • Committer: Brian Aker
  • Date: 2009-08-18 07:20:29 UTC
  • mfrom: (1117.1.9 merge)
  • Revision ID: brian@gaz-20090818072029-s9ch5lcmltxwidn7
Merge of Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
264
264
#define HA_OPTION_PACK_RECORD           1
265
265
#define HA_OPTION_PACK_KEYS             2
266
266
#define HA_OPTION_COMPRESS_RECORD       4
267
 
#define HA_OPTION_LONG_BLOB_PTR         8 /* new ISAM format */
268
267
#define HA_OPTION_TMP_TABLE             16
269
 
#define HA_OPTION_CHECKSUM              32
270
 
#define HA_OPTION_DELAY_KEY_WRITE       64
271
268
#define HA_OPTION_NO_PACK_KEYS          128  /* Reserved for MySQL */
272
269
#define HA_OPTION_CREATE_FROM_ENGINE    256
273
 
#define HA_OPTION_RELIES_ON_SQL_LAYER   512
274
270
#define HA_OPTION_NULL_FIELDS           1024
275
271
#define HA_OPTION_PAGE_CHECKSUM         2048
276
272
#define HA_OPTION_TEMP_COMPRESS_RECORD  ((uint32_t) 16384)      /* set by isamchk */
281
277
#define HA_DONT_TOUCH_DATA      1       /* Don't empty datafile (isamchk) */
282
278
#define HA_PACK_RECORD          2       /* Request packed record format */
283
279
#define HA_CREATE_TMP_TABLE     4
284
 
#define HA_CREATE_CHECKSUM      8
285
280
#define HA_CREATE_KEEP_FILES    16      /* don't overwrite .MYD and MYI */
286
 
#define HA_CREATE_PAGE_CHECKSUM 32
287
 
#define HA_CREATE_DELAY_KEY_WRITE 64
288
 
#define HA_CREATE_RELIES_ON_SQL_LAYER 128
289
281
 
290
282
/*
291
283
  The following flags (OR-ed) are passed to handler::info() method.