~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Brian Aker
  • Date: 2008-08-11 23:20:41 UTC
  • Revision ID: brian@tangent.org-20080811232041-h9ydp3um89b1pbvm
Clean up UNION in CREATE TABLE statement

Show diffs side-by-side

added added

removed removed

Lines of Context:
342
342
 
343
343
/* Bits in used_fields */
344
344
#define HA_CREATE_USED_AUTO             (1L << 0)
 
345
#ifdef DEAD_OPTIONS
345
346
#define HA_CREATE_USED_RAID             (1L << 1) /* Historical, no longer supported */
346
347
#define HA_CREATE_USED_UNION            (1L << 2)
 
348
#define HA_CREATE_USED_PASSWORD         (1L << 17)
 
349
#endif
347
350
#define HA_CREATE_USED_INSERT_METHOD    (1L << 3)
348
351
#define HA_CREATE_USED_MIN_ROWS         (1L << 4)
349
352
#define HA_CREATE_USED_MAX_ROWS         (1L << 5)
358
361
#define HA_CREATE_USED_DELAY_KEY_WRITE  (1L << 14)
359
362
#define HA_CREATE_USED_ROW_FORMAT       (1L << 15)
360
363
#define HA_CREATE_USED_COMMENT          (1L << 16)
361
 
#define HA_CREATE_USED_PASSWORD         (1L << 17)
362
364
#define HA_CREATE_USED_CONNECTION       (1L << 18)
363
365
#define HA_CREATE_USED_KEY_BLOCK_SIZE   (1L << 19)
364
366
#define HA_CREATE_USED_TRANSACTIONAL    (1L << 20)