~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/myisam.h

  • Committer: Brian Aker
  • Date: 2008-07-20 09:02:20 UTC
  • Revision ID: brian@tangent.org-20080720090220-bhrg1wemfnzutbgi
Convert default engine to Innodb

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
#ifndef _myisam_h
19
19
#define _myisam_h
20
 
 
21
 
#include <drizzled/key_map.h>
22
 
 
23
20
#ifdef  __cplusplus
24
21
extern "C" {
25
22
#endif
26
23
 
27
 
#include <drizzled/base.h>
 
24
#ifndef _my_base_h
 
25
#include <my_base.h>
 
26
#endif
28
27
#ifndef _m_ctype_h
29
 
#include <mystrings/m_ctype.h>
 
28
#include <m_ctype.h>
30
29
#endif
31
30
#ifndef _keycache_h
32
31
#include "keycache.h"
33
32
#endif
34
 
#include <plugin/myisam/my_handler.h>
35
 
#include <mysys/iocache.h>
 
33
#include "my_handler.h"
 
34
#include <mysql/plugin.h>
36
35
 
37
36
/*
38
37
  Limit max keys according to HA_MAX_POSSIBLE_KEY
72
71
  This means that clearing of high keys is ignored, setting one high key
73
72
  sets all high keys.
74
73
*/
75
 
#define MI_KEYMAP_BITS      (64)
76
 
#define MI_KEYMAP_HIGH_MASK (1UL << (MI_KEYMAP_BITS - 1))
 
74
#define MI_KEYMAP_BITS      (8 * SIZEOF_LONG_LONG)
 
75
#define MI_KEYMAP_HIGH_MASK (1ULL << (MI_KEYMAP_BITS - 1))
77
76
#define mi_get_mask_all_keys_active(_keys_) \
78
77
                            (((_keys_) < MI_KEYMAP_BITS) ? \
79
 
                             ((1UL << (_keys_)) - 1UL) : \
80
 
                             (~ 0UL))
 
78
                             ((1ULL << (_keys_)) - 1ULL) : \
 
79
                             (~ 0ULL))
81
80
 
82
81
#if MI_MAX_KEY > MI_KEYMAP_BITS
83
82
 
84
83
#define mi_is_key_active(_keymap_,_keyno_) \
85
84
                            (((_keyno_) < MI_KEYMAP_BITS) ? \
86
 
                             test((_keymap_) & (1UL << (_keyno_))) : \
 
85
                             test((_keymap_) & (1ULL << (_keyno_))) : \
87
86
                             test((_keymap_) & MI_KEYMAP_HIGH_MASK))
88
87
#define mi_set_key_active(_keymap_,_keyno_) \
89
88
                            (_keymap_)|= (((_keyno_) < MI_KEYMAP_BITS) ? \
90
 
                                          (1UL << (_keyno_)) : \
 
89
                                          (1ULL << (_keyno_)) : \
91
90
                                          MI_KEYMAP_HIGH_MASK)
92
91
#define mi_clear_key_active(_keymap_,_keyno_) \
93
92
                            (_keymap_)&= (((_keyno_) < MI_KEYMAP_BITS) ? \
94
 
                                          (~ (1UL << (_keyno_))) : \
95
 
                                          (~ (0UL)) /*ignore*/ )
 
93
                                          (~ (1ULL << (_keyno_))) : \
 
94
                                          (~ (0ULL)) /*ignore*/ )
96
95
 
97
96
#else
98
97
 
99
98
#define mi_is_key_active(_keymap_,_keyno_) \
100
 
                            test((_keymap_) & (1UL << (_keyno_)))
 
99
                            test((_keymap_) & (1ULL << (_keyno_)))
101
100
#define mi_set_key_active(_keymap_,_keyno_) \
102
 
                            (_keymap_)|= (1UL << (_keyno_))
 
101
                            (_keymap_)|= (1ULL << (_keyno_))
103
102
#define mi_clear_key_active(_keymap_,_keyno_) \
104
 
                            (_keymap_)&= (~ (1UL << (_keyno_)))
 
103
                            (_keymap_)&= (~ (1ULL << (_keyno_)))
105
104
 
106
105
#endif
107
106
 
141
140
  uint64_t auto_increment;
142
141
  uint64_t key_map;                     /* Which keys are used */
143
142
  char  *data_file_name, *index_file_name;
144
 
  uint32_t  keys;                               /* Number of keys in use */
 
143
  uint  keys;                           /* Number of keys in use */
145
144
  uint  options;                        /* HA_OPTION_... used */
146
145
  int   errkey,                         /* With key was dupplicated on err */
147
146
        sortkey;                        /* clustered by this key */
149
148
  time_t create_time;                   /* When table was created */
150
149
  time_t check_time;
151
150
  time_t update_time;
152
 
  uint32_t  reflength;
 
151
  uint  reflength;
153
152
  ulong record_offset;
154
153
  ulong *rec_per_key;                   /* for sql optimizing */
155
154
} MI_ISAMINFO;
163
162
  uint64_t auto_increment;
164
163
  uint64_t data_file_length;
165
164
  uint64_t key_file_length;
166
 
  uint32_t old_options;
167
 
  uint8_t language;
168
 
  bool with_auto_increment;
 
165
  uint old_options;
 
166
  uint8 language;
 
167
  my_bool with_auto_increment;
169
168
} MI_CREATE_INFO;
170
169
 
171
170
struct st_myisam_info;                  /* For referense */
176
175
typedef struct st_mi_keydef             /* Key definition with open & info */
177
176
{
178
177
  struct st_mi_isam_share *share;       /* Pointer to base (set in mi_open) */
179
 
  uint16_t keysegs;                     /* Number of key-segment */
180
 
  uint16_t flag;                                /* NOSAME, PACK_USED */
 
178
  uint16 keysegs;                       /* Number of key-segment */
 
179
  uint16 flag;                          /* NOSAME, PACK_USED */
181
180
 
182
 
  uint8_t  key_alg;                     /* BTREE, RTREE */
183
 
  uint16_t block_length;                        /* Length of keyblock (auto) */
184
 
  uint16_t underflow_block_length;      /* When to execute underflow */
185
 
  uint16_t keylength;                   /* Tot length of keyparts (auto) */
186
 
  uint16_t minlength;                   /* min length of (packed) key (auto) */
187
 
  uint16_t maxlength;                   /* max length of (packed) key (auto) */
188
 
  uint16_t block_size_index;            /* block_size (auto) */
189
 
  uint32_t version;                     /* For concurrent read/write */
 
181
  uint8  key_alg;                       /* BTREE, RTREE */
 
182
  uint16 block_length;                  /* Length of keyblock (auto) */
 
183
  uint16 underflow_block_length;        /* When to execute underflow */
 
184
  uint16 keylength;                     /* Tot length of keyparts (auto) */
 
185
  uint16 minlength;                     /* min length of (packed) key (auto) */
 
186
  uint16 maxlength;                     /* max length of (packed) key (auto) */
 
187
  uint16 block_size_index;              /* block_size (auto) */
 
188
  uint32 version;                       /* For concurrent read/write */
190
189
 
191
190
  HA_KEYSEG *seg,*end;
192
191
 
193
192
  int (*bin_search)(struct st_myisam_info *info,struct st_mi_keydef *keyinfo,
194
 
                    unsigned char *page,unsigned char *key,
195
 
                    uint32_t key_len,uint32_t comp_flag,unsigned char * *ret_pos,
196
 
                    unsigned char *buff, bool *was_last_key);
197
 
  uint32_t (*get_key)(struct st_mi_keydef *keyinfo,uint32_t nod_flag,unsigned char * *page,
198
 
                  unsigned char *key);
199
 
  int (*pack_key)(struct st_mi_keydef *keyinfo,uint32_t nod_flag,unsigned char *next_key,
200
 
                  unsigned char *org_key, unsigned char *prev_key, unsigned char *key,
 
193
                    uchar *page,uchar *key,
 
194
                    uint key_len,uint comp_flag,uchar * *ret_pos,
 
195
                    uchar *buff, my_bool *was_last_key);
 
196
  uint (*get_key)(struct st_mi_keydef *keyinfo,uint nod_flag,uchar * *page,
 
197
                  uchar *key);
 
198
  int (*pack_key)(struct st_mi_keydef *keyinfo,uint nod_flag,uchar *next_key,
 
199
                  uchar *org_key, uchar *prev_key, uchar *key,
201
200
                  struct st_mi_s_param *s_temp);
202
 
  void (*store_key)(struct st_mi_keydef *keyinfo, unsigned char *key_pos,
 
201
  void (*store_key)(struct st_mi_keydef *keyinfo, uchar *key_pos,
203
202
                    struct st_mi_s_param *s_temp);
204
 
  int (*ck_insert)(struct st_myisam_info *inf, uint32_t k_nr, unsigned char *k, uint32_t klen);
205
 
  int (*ck_delete)(struct st_myisam_info *inf, uint32_t k_nr, unsigned char *k, uint32_t klen);
 
203
  int (*ck_insert)(struct st_myisam_info *inf, uint k_nr, uchar *k, uint klen);
 
204
  int (*ck_delete)(struct st_myisam_info *inf, uint k_nr, uchar *k, uint klen);
206
205
} MI_KEYDEF;
207
206
 
208
207
 
210
209
 
211
210
typedef struct st_unique_def            /* Segment definition of unique */
212
211
{
213
 
  uint16_t keysegs;                     /* Number of key-segment */
214
 
  unsigned char key;                            /* Mapped to which key */
215
 
  uint8_t null_are_equal;
 
212
  uint16 keysegs;                       /* Number of key-segment */
 
213
  uchar key;                            /* Mapped to which key */
 
214
  uint8 null_are_equal;
216
215
  HA_KEYSEG *seg,*end;
217
216
} MI_UNIQUEDEF;
218
217
 
219
218
typedef struct st_mi_decode_tree        /* Decode huff-table */
220
219
{
221
 
  uint16_t *table;
 
220
  uint16 *table;
222
221
  uint   quick_table_bits;
223
 
  unsigned char  *intervalls;
 
222
  uchar  *intervalls;
224
223
} MI_DECODE_TREE;
225
224
 
226
225
 
234
233
 
235
234
typedef struct st_columndef             /* column information */
236
235
{
237
 
  int16_t  type;                                /* en_fieldtype */
238
 
  uint16_t length;                      /* length of field */
239
 
  uint32_t offset;                      /* Offset to position in row */
240
 
  uint8_t  null_bit;                    /* If column may be 0 */
241
 
  uint16_t null_pos;                    /* position for null marker */
 
236
  int16  type;                          /* en_fieldtype */
 
237
  uint16 length;                        /* length of field */
 
238
  uint32 offset;                        /* Offset to position in row */
 
239
  uint8  null_bit;                      /* If column may be 0 */
 
240
  uint16 null_pos;                      /* position for null marker */
242
241
 
243
242
#ifndef NOT_PACKED_DATABASES
244
243
  void (*unpack)(struct st_columndef *rec,struct st_mi_bit_buff *buff,
245
 
                 unsigned char *start,unsigned char *end);
 
244
                 uchar *start,uchar *end);
246
245
  enum en_fieldtype base_type;
247
 
  uint32_t space_length_bits,pack_type;
 
246
  uint space_length_bits,pack_type;
248
247
  MI_DECODE_TREE *huff_tree;
249
248
#endif
250
249
} MI_COLUMNDEF;
251
250
 
252
251
 
253
252
extern char * myisam_log_filename;              /* Name of logfile */
254
 
extern uint32_t myisam_block_size;
255
 
extern uint32_t myisam_concurrent_insert;
256
 
extern uint32_t myisam_bulk_insert_tree_size; 
257
 
extern uint32_t data_pointer_size;
 
253
extern ulong myisam_block_size;
 
254
extern ulong myisam_concurrent_insert;
 
255
extern bool myisam_flush,myisam_delay_key_write,myisam_single_user;
 
256
extern my_off_t myisam_max_temp_length;
 
257
extern ulong myisam_bulk_insert_tree_size, myisam_data_pointer_size;
258
258
 
259
259
        /* Prototypes for myisam-functions */
260
260
 
261
261
extern int mi_close(struct st_myisam_info *file);
262
 
extern int mi_delete(struct st_myisam_info *file,const unsigned char *buff);
 
262
extern int mi_delete(struct st_myisam_info *file,const uchar *buff);
263
263
extern struct st_myisam_info *mi_open(const char *name,int mode,
264
 
                                      uint32_t wait_if_locked);
 
264
                                      uint wait_if_locked);
265
265
extern int mi_panic(enum ha_panic_function function);
266
 
extern int mi_rfirst(struct st_myisam_info *file,unsigned char *buf,int inx);
267
 
extern int mi_rkey(MI_INFO *info, unsigned char *buf, int inx, const unsigned char *key,
 
266
extern int mi_rfirst(struct st_myisam_info *file,uchar *buf,int inx);
 
267
extern int mi_rkey(MI_INFO *info, uchar *buf, int inx, const uchar *key,
268
268
                   key_part_map keypart_map, enum ha_rkey_function search_flag);
269
 
extern int mi_rlast(struct st_myisam_info *file,unsigned char *buf,int inx);
270
 
extern int mi_rnext(struct st_myisam_info *file,unsigned char *buf,int inx);
271
 
extern int mi_rnext_same(struct st_myisam_info *info, unsigned char *buf);
272
 
extern int mi_rprev(struct st_myisam_info *file,unsigned char *buf,int inx);
273
 
extern int mi_rrnd(struct st_myisam_info *file,unsigned char *buf, my_off_t pos);
 
269
extern int mi_rlast(struct st_myisam_info *file,uchar *buf,int inx);
 
270
extern int mi_rnext(struct st_myisam_info *file,uchar *buf,int inx);
 
271
extern int mi_rnext_same(struct st_myisam_info *info, uchar *buf);
 
272
extern int mi_rprev(struct st_myisam_info *file,uchar *buf,int inx);
 
273
extern int mi_rrnd(struct st_myisam_info *file,uchar *buf, my_off_t pos);
274
274
extern int mi_scan_init(struct st_myisam_info *file);
275
 
extern int mi_scan(struct st_myisam_info *file,unsigned char *buf);
276
 
extern int mi_rsame(struct st_myisam_info *file,unsigned char *record,int inx);
277
 
extern int mi_rsame_with_pos(struct st_myisam_info *file,unsigned char *record,
 
275
extern int mi_scan(struct st_myisam_info *file,uchar *buf);
 
276
extern int mi_rsame(struct st_myisam_info *file,uchar *record,int inx);
 
277
extern int mi_rsame_with_pos(struct st_myisam_info *file,uchar *record,
278
278
                             int inx, my_off_t pos);
279
 
extern int mi_update(struct st_myisam_info *file,const unsigned char *old,
280
 
                     unsigned char *new_record);
281
 
extern int mi_write(struct st_myisam_info *file,unsigned char *buff);
 
279
extern int mi_update(struct st_myisam_info *file,const uchar *old,
 
280
                     uchar *new_record);
 
281
extern int mi_write(struct st_myisam_info *file,uchar *buff);
282
282
extern my_off_t mi_position(struct st_myisam_info *file);
283
 
extern int mi_status(struct st_myisam_info *info, MI_ISAMINFO *x, uint32_t flag);
 
283
extern int mi_status(struct st_myisam_info *info, MI_ISAMINFO *x, uint flag);
284
284
extern int mi_lock_database(struct st_myisam_info *file,int lock_type);
285
 
extern int mi_create(const char *name,uint32_t keys,MI_KEYDEF *keydef,
286
 
                     uint32_t columns, MI_COLUMNDEF *columndef,
287
 
                     uint32_t uniques, MI_UNIQUEDEF *uniquedef,
288
 
                     MI_CREATE_INFO *create_info, uint32_t flags);
 
285
extern int mi_create(const char *name,uint keys,MI_KEYDEF *keydef,
 
286
                     uint columns, MI_COLUMNDEF *columndef,
 
287
                     uint uniques, MI_UNIQUEDEF *uniquedef,
 
288
                     MI_CREATE_INFO *create_info, uint flags);
289
289
extern int mi_delete_table(const char *name);
290
290
extern int mi_rename(const char *from, const char *to);
291
291
extern int mi_extra(struct st_myisam_info *file,
297
297
extern int mi_log(int activate_log);
298
298
extern int mi_is_changed(struct st_myisam_info *info);
299
299
extern int mi_delete_all_rows(struct st_myisam_info *info);
300
 
extern ulong _mi_calc_blob_length(uint32_t length , const unsigned char *pos);
301
 
extern uint32_t mi_get_pointer_length(uint64_t file_length, uint32_t def);
 
300
extern ulong _mi_calc_blob_length(uint length , const uchar *pos);
 
301
extern uint mi_get_pointer_length(uint64_t file_length, uint def);
302
302
 
303
303
/* this is used to pass to mysql_myisamchk_table */
304
304
 
350
350
 
351
351
#define T_REP_ANY               (T_REP | T_REP_BY_SORT | T_REP_PARALLEL)
352
352
 
 
353
/*
 
354
  Flags used by myisamchk.c or/and ha_myisam.cc that are NOT passed
 
355
  to mi_check.c follows:
 
356
*/
 
357
 
 
358
#define TT_USEFRM               1
 
359
#define TT_FOR_UPGRADE          2
 
360
 
353
361
#define O_NEW_INDEX     1               /* Bits set in out_flag */
354
362
#define O_NEW_DATA      2
355
363
#define O_DATA_LOST     4
358
366
 
359
367
typedef struct st_sort_key_blocks               /* Used when sorting */
360
368
{
361
 
  unsigned char *buff,*end_pos;
362
 
  unsigned char lastkey[MI_MAX_POSSIBLE_KEY_BUFF];
363
 
  uint32_t last_length;
 
369
  uchar *buff,*end_pos;
 
370
  uchar lastkey[MI_MAX_POSSIBLE_KEY_BUFF];
 
371
  uint last_length;
364
372
  int inited;
365
373
} SORT_KEY_BLOCKS;
366
374
 
367
375
 
368
 
/*
369
 
  MyISAM supports several statistics collection methods. Currently statistics
370
 
  collection method is not stored in MyISAM file and has to be specified for
 
376
/* 
 
377
  MyISAM supports several statistics collection methods. Currently statistics 
 
378
  collection method is not stored in MyISAM file and has to be specified for 
371
379
  each table analyze/repair operation in  MI_CHECK::stats_method.
372
380
*/
373
381
 
374
 
typedef enum
 
382
typedef enum 
375
383
{
376
384
  /* Treat NULLs as inequal when collecting statistics (default for 4.1/5.0) */
377
385
  MI_STATS_METHOD_NULLS_NOT_EQUAL,
392
400
  my_off_t keydata,totaldata,key_blocks,start_check_pos;
393
401
  ha_rows total_records,total_deleted;
394
402
  ha_checksum record_checksum,glob_crc;
395
 
  uint64_t use_buffers;
396
 
  size_t read_buffer_length, write_buffer_length,
397
 
         sort_buffer_length, sort_key_blocks;
398
 
  uint32_t out_flag,warning_printed,error_printed,verbose;
399
 
  uint32_t opt_sort_key,total_files,max_level;
400
 
  uint32_t testflag, key_cache_block_size;
401
 
  uint8_t language;
402
 
  bool using_global_keycache, opt_lock_memory, opt_follow_links;
403
 
  bool retry_repair, force_sort;
 
403
  ulong use_buffers,read_buffer_length,write_buffer_length,
 
404
        sort_buffer_length,sort_key_blocks;
 
405
  uint out_flag,warning_printed,error_printed,verbose;
 
406
  uint opt_sort_key,total_files,max_level;
 
407
  uint testflag, key_cache_block_size;
 
408
  uint8 language;
 
409
  my_bool using_global_keycache, opt_lock_memory, opt_follow_links;
 
410
  my_bool retry_repair, force_sort;
404
411
  char temp_filename[FN_REFLEN],*isam_file_name;
 
412
  MY_TMPDIR *tmpdir;
405
413
  int tmpfile_createflag;
406
414
  myf myf_rw;
407
415
  IO_CACHE read_cache;
408
 
 
409
 
  /*
 
416
  
 
417
  /* 
410
418
    The next two are used to collect statistics, see update_key_parts for
411
419
    description.
412
420
  */
413
421
  uint64_t unique_count[MI_MAX_KEY_SEG+1];
414
422
  uint64_t notnull_count[MI_MAX_KEY_SEG+1];
415
 
 
 
423
  
416
424
  ha_checksum key_crc[HA_MAX_POSSIBLE_KEY];
417
425
  ulong rec_per_key_part[MI_MAX_KEY_SEG*HA_MAX_POSSIBLE_KEY];
418
 
  void *session;
 
426
  void *thd;
419
427
  const char *db_name, *table_name;
420
428
  const char *op_name;
421
429
  enum_mi_stats_method stats_method;
425
433
{
426
434
  my_off_t filelength,dupp,buff_length;
427
435
  ha_rows max_records;
428
 
  uint32_t current_key, total_keys;
 
436
  uint current_key, total_keys;
429
437
  myf myf_rw;
430
438
  enum data_file_type new_data_file_type;
431
439
  MI_INFO *info;
432
440
  MI_CHECK *param;
433
 
  unsigned char *buff;
 
441
  uchar *buff;
434
442
  SORT_KEY_BLOCKS *key_block,*key_block_end;
435
443
  /* sync things */
436
 
  uint32_t got_error, threads_running;
 
444
  uint got_error, threads_running;
437
445
  pthread_mutex_t mutex;
438
446
  pthread_cond_t  cond;
439
447
} SORT_INFO;
441
449
/* functions in mi_check */
442
450
void myisamchk_init(MI_CHECK *param);
443
451
int chk_status(MI_CHECK *param, MI_INFO *info);
444
 
int chk_del(MI_CHECK *param, register MI_INFO *info, uint32_t test_flag);
 
452
int chk_del(MI_CHECK *param, register MI_INFO *info, uint test_flag);
445
453
int chk_size(MI_CHECK *param, MI_INFO *info);
446
454
int chk_key(MI_CHECK *param, MI_INFO *info);
447
455
int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend);
453
461
int mi_repair_parallel(MI_CHECK *param, register MI_INFO *info,
454
462
                      const char * name, int rep_quick);
455
463
int change_to_newfile(const char * filename, const char * old_ext,
456
 
                      const char * new_ext, uint32_t raid_chunks,
 
464
                      const char * new_ext, uint raid_chunks,
457
465
                      myf myflags);
458
466
void lock_memory(MI_CHECK *param);
459
467
void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
460
 
                               bool repair);
461
 
int update_state_info(MI_CHECK *param, MI_INFO *info,uint32_t update);
 
468
                               my_bool repair);
 
469
int update_state_info(MI_CHECK *param, MI_INFO *info,uint update);
462
470
void update_key_parts(MI_KEYDEF *keyinfo, ulong *rec_per_key_part,
463
 
                      uint64_t *unique, uint64_t *notnull,
 
471
                      uint64_t *unique, uint64_t *notnull, 
464
472
                      uint64_t records);
465
473
int filecopy(MI_CHECK *param, File to,File from,my_off_t start,
466
474
             my_off_t length, const char *type);
467
 
int movepoint(MI_INFO *info,unsigned char *record,my_off_t oldpos,
468
 
              my_off_t newpos, uint32_t prot_key);
469
 
int write_data_suffix(SORT_INFO *sort_info, bool fix_datafile);
 
475
int movepoint(MI_INFO *info,uchar *record,my_off_t oldpos,
 
476
              my_off_t newpos, uint prot_key);
 
477
int write_data_suffix(SORT_INFO *sort_info, my_bool fix_datafile);
470
478
int test_if_almost_full(MI_INFO *info);
471
479
int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename);
472
 
bool mi_test_if_sort_rep(MI_INFO *info, ha_rows rows, uint64_t key_map,
473
 
                            bool force);
 
480
my_bool mi_test_if_sort_rep(MI_INFO *info, ha_rows rows, uint64_t key_map,
 
481
                            my_bool force);
474
482
 
475
 
int mi_init_bulk_insert(MI_INFO *info, uint32_t cache_size, ha_rows rows);
476
 
void mi_flush_bulk_insert(MI_INFO *info, uint32_t inx);
 
483
int mi_init_bulk_insert(MI_INFO *info, ulong cache_size, ha_rows rows);
 
484
void mi_flush_bulk_insert(MI_INFO *info, uint inx);
477
485
void mi_end_bulk_insert(MI_INFO *info);
478
 
int mi_assign_to_key_cache(MI_INFO *info, KEY_CACHE *key_cache); 
 
486
int mi_assign_to_key_cache(MI_INFO *info, uint64_t key_map, 
 
487
                           KEY_CACHE *key_cache);
479
488
void mi_change_key_cache(KEY_CACHE *old_key_cache,
480
489
                         KEY_CACHE *new_key_cache);
481
 
int mi_preload(MI_INFO *info, uint64_t key_map, bool ignore_leaves);
 
490
int mi_preload(MI_INFO *info, uint64_t key_map, my_bool ignore_leaves);
482
491
 
483
492
#ifdef  __cplusplus
484
493
}