~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.h

  • Committer: Monty Taylor
  • Date: 2009-01-06 18:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 762.
  • Revision ID: mordred@inaugust.com-20090106184625-kqu7nsnwjwm5jv4s
Enabled dirty_close.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#define HA_RECOVER_FORCE        4       /* Recover even if we loose rows */
31
31
#define HA_RECOVER_QUICK        8       /* Don't check rows in data file */
32
32
 
33
 
extern ulong myisam_sort_buffer_size;
34
33
extern TYPELIB myisam_recover_typelib;
35
34
extern ulong myisam_recover_options;
36
35
 
142
141
                            uint32_t n_ranges, uint32_t mode, HANDLER_BUFFER *buf);
143
142
  int multi_range_read_next(char **range_info);
144
143
  ha_rows multi_range_read_info_const(uint32_t keyno, RANGE_SEQ_IF *seq,
145
 
                                      void *seq_init_param, 
 
144
                                      void *seq_init_param,
146
145
                                      uint32_t n_ranges, uint32_t *bufsz,
147
146
                                      uint32_t *flags, COST_VECT *cost);
148
147
  int multi_range_read_info(uint32_t keyno, uint32_t n_ranges, uint32_t keys,
149
148
                            uint32_t *bufsz, uint32_t *flags, COST_VECT *cost);
150
 
  
 
149
 
151
150
  /* Index condition pushdown implementation */
152
151
  Item *idx_cond_push(uint32_t keyno, Item* idx_cond);
153
152
  bool check_if_supported_virtual_columns(void) { return true; }