~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam_priv.h

  • Committer: Mark Atwood
  • Date: 2011-09-14 03:30:42 UTC
  • mfrom: (2409.2.6 refactor7)
  • Revision ID: me@mark.atwood.name-20110914033042-2u0s8foaigvf62g2
mergeĀ lp:~olafvdspek/drizzle/refactor7

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
  char  *data_file_name,                /* Resolved path names from symlinks */
187
187
        *index_file_name;
188
188
  unsigned char *file_map;                      /* mem-map of file if possible */
189
 
private:
190
 
  drizzled::KEY_CACHE key_cache;                        /* ref to the current key cache */
191
 
public:
192
 
  drizzled::KEY_CACHE *getKeyCache()
193
 
  {
194
 
    return &key_cache;
195
 
  }
196
 
 
197
 
  void setKeyCache();
198
 
 
199
189
  MI_DECODE_TREE *decode_trees;
200
190
  uint16_t *decode_tables;
201
191
  int (*read_record)(struct st_myisam_info*, drizzled::internal::my_off_t, unsigned char*);
737
727
void mi_check_print_info(MI_CHECK *param, const char *fmt,...);
738
728
int flush_pending_blocks(MI_SORT_PARAM *param);
739
729
int thr_write_keys(MI_SORT_PARAM *sort_param);
740
 
int flush_blocks(MI_CHECK *param, drizzled::KEY_CACHE *key_cache, int file);
741
730
 
742
731
int sort_write_record(MI_SORT_PARAM *sort_param);
743
732
int _create_index_by_sort(MI_SORT_PARAM *info,bool no_messages, size_t);