~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
#define HA_CAN_BIT_FIELD       (1 << 28) /* Historical, no longer supported */
166
166
#define HA_NEED_READ_RANGE_BUFFER (1 << 29) /* for read_multi_range */
167
167
#define HA_ANY_INDEX_MAY_BE_UNIQUE (1 << 30)
168
 
#define HA_NO_COPY_ON_ALTER    (1LL << 31)
169
 
#define HA_HAS_RECORDS         (1LL << 32) /* records() gives exact count*/
 
168
#define HA_NO_COPY_ON_ALTER    (1L << 31)
 
169
#define HA_HAS_RECORDS         (1L << 32) /* records() gives exact count*/
170
170
/* Has it's own method of binlog logging */
171
 
#define HA_HAS_OWN_BINLOGGING  (1LL << 33) /* Historical, no longer supported */
172
 
#define HA_MRR_CANT_SORT       (1LL << 34)
 
171
#define HA_HAS_OWN_BINLOGGING  (1L << 33) /* Historical, no longer supported */
 
172
#define HA_MRR_CANT_SORT       (1L << 34)
173
173
 
174
174
/*
175
175
  Engine is capable of row-format and statement-format logging,
176
176
  respectively
177
177
*/
178
 
#define HA_BINLOG_ROW_CAPABLE  (1LL << 35)
179
 
#define HA_BINLOG_STMT_CAPABLE (1LL << 36)
 
178
#define HA_BINLOG_ROW_CAPABLE  (1L << 35)
 
179
#define HA_BINLOG_STMT_CAPABLE (1L << 36)
180
180
 
181
 
#define HA_ONLINE_ALTER        (1LL << 37)
 
181
#define HA_ONLINE_ALTER        (1L << 37)
182
182
 
183
183
/*
184
184
  Set of all binlog flags. Currently only contain the capabilities