~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/handler.h

  • Committer: Brian Aker
  • Date: 2008-07-07 14:25:25 UTC
  • mto: (77.1.25 codestyle)
  • mto: This revision was merged to the branch mainline in revision 82.
  • Revision ID: brian@tangent.org-20080707142525-xzy2nl3ie2ebwfln
LL() cleanup

Show diffs side-by-side

added added

removed removed

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