~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.h

  • Committer: Brian Aker
  • Date: 2008-08-09 06:20:11 UTC
  • Revision ID: brian@tangent.org-20080809062011-vkyz8gszh6jpk3ga
Converted myisam away from my_bool

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
extern ulong myisam_recover_options;
34
34
 
35
35
C_MODE_START
36
 
my_bool index_cond_func_myisam(void *arg);
 
36
bool index_cond_func_myisam(void *arg);
37
37
C_MODE_END
38
38
 
39
39
class ha_myisam: public handler
120
120
  int assign_to_keycache(THD* thd, HA_CHECK_OPT* check_opt);
121
121
  bool check_if_incompatible_data(HA_CREATE_INFO *info, uint table_changes);
122
122
#ifdef HAVE_QUERY_CACHE
123
 
  my_bool register_query_cache_table(THD *thd, char *table_key,
 
123
  bool register_query_cache_table(THD *thd, char *table_key,
124
124
                                     uint key_length,
125
125
                                     qc_engine_callback
126
126
                                     *engine_callback,
152
152
private:
153
153
  DsMrr_impl ds_mrr;
154
154
  key_map keys_with_parts;
155
 
  friend my_bool index_cond_func_myisam(void *arg);
 
155
  friend bool index_cond_func_myisam(void *arg);
156
156
};
157
157