~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

Merged Nathan from lp:~nlws/drizzle/fix-string-c-ptr-overrun

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
/* class for the the myisam handler */
24
24
 
25
 
#include <storage/myisam/myisam.h>
 
25
#include <plugin/myisam/myisam.h>
26
26
 
27
27
#define HA_RECOVER_NONE         0       /* No automatic recover */
28
28
#define HA_RECOVER_DEFAULT      1       /* Automatic recover active */
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
 
53
52
  int repair(Session *session, MI_CHECK &param, bool optimize);
54
53
 
55
54
 public:
56
 
  ha_myisam(handlerton *hton, TABLE_SHARE *table_arg);
 
55
  ha_myisam(StorageEngine *engine, TableShare *table_arg);
57
56
  ~ha_myisam() {}
58
57
  handler *clone(MEM_ROOT *mem_root);
59
58
  const char *table_type() const { return "MyISAM"; }
119
118
  bool auto_repair() const { return myisam_recover_options != 0; }
120
119
  int optimize(Session* session, HA_CHECK_OPT* check_opt);
121
120
  int assign_to_keycache(Session* session, HA_CHECK_OPT* check_opt);
122
 
  bool check_if_incompatible_data(HA_CREATE_INFO *info, uint32_t table_changes);
123
 
#ifdef HAVE_QUERY_CACHE
124
 
  bool register_query_cache_table(Session *session, char *table_key,
125
 
                                     uint32_t key_length,
126
 
                                     qc_engine_callback
127
 
                                     *engine_callback,
128
 
                                     uint64_t *engine_data);
129
 
#endif
130
121
  MI_INFO *file_ptr(void)
131
122
  {
132
123
    return file;
142
133
                            uint32_t n_ranges, uint32_t mode, HANDLER_BUFFER *buf);
143
134
  int multi_range_read_next(char **range_info);
144
135
  ha_rows multi_range_read_info_const(uint32_t keyno, RANGE_SEQ_IF *seq,
145
 
                                      void *seq_init_param, 
 
136
                                      void *seq_init_param,
146
137
                                      uint32_t n_ranges, uint32_t *bufsz,
147
138
                                      uint32_t *flags, COST_VECT *cost);
148
139
  int multi_range_read_info(uint32_t keyno, uint32_t n_ranges, uint32_t keys,
149
140
                            uint32_t *bufsz, uint32_t *flags, COST_VECT *cost);
150
 
  
 
141
 
151
142
  /* Index condition pushdown implementation */
152
143
  Item *idx_cond_push(uint32_t keyno, Item* idx_cond);
153
 
  bool check_if_supported_virtual_columns(void) { return true; }
154
144
private:
155
145
  DsMrr_impl ds_mrr;
156
146
  key_map keys_with_parts;