~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.h

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
/* class for the the myisam handler */
22
22
 
23
 
#include <myisam.h>
 
23
#include <storage/myisam/myisam.h>
24
24
 
25
25
#define HA_RECOVER_NONE         0       /* No automatic recover */
26
26
#define HA_RECOVER_DEFAULT      1       /* Automatic recover active */
54
54
  uint64_t table_flags() const { return int_table_flags; }
55
55
  int index_init(uint idx, bool sorted);
56
56
  int index_end();
57
 
  uint32_t index_flags(uint inx, uint part __attribute__((__unused__)),
58
 
                       bool all_parts __attribute__((__unused__))) const
 
57
  uint32_t index_flags(uint inx, uint part __attribute__((unused)),
 
58
                       bool all_parts __attribute__((unused))) const
59
59
  {
60
60
    return ((table_share->key_info[inx].algorithm == HA_KEY_ALG_FULLTEXT) ?
61
61
            0 : HA_READ_NEXT | HA_READ_PREV | HA_READ_RANGE |