~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_base.h

Merging trunk changes from over weekend.

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
#define HA_USES_PARSER           16384  /* Fulltext index uses [pre]parser */
272
272
#define HA_USES_BLOCK_SIZE       ((uint) 32768)
273
273
#define HA_SORT_ALLOWS_SAME      512    /* Intern bit when sorting records */
274
 
#if MYSQL_VERSION_ID < 0x50200
275
 
/*
276
 
  Key has a part that can have end space.  If this is an unique key
277
 
  we have to handle it differently from other unique keys as we can find
278
 
  many matching rows for one key (because end space are not compared)
279
 
*/
280
 
#define HA_END_SPACE_KEY      0 /* was: 4096 */
281
 
#else
282
 
#error HA_END_SPACE_KEY is obsolete, please remove it
283
 
#endif
284
 
 
285
274
 
286
275
        /* These flags can be added to key-seg-flag */
287
276