~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2009-10-16 10:27:33 UTC
  • mfrom: (1183.1.4 merge)
  • Revision ID: brian@gaz-20091016102733-b10po5oup0hjlilh
MergeĀ EngineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
typedef struct st_ha_check_opt
121
121
{
122
122
  st_ha_check_opt() {}                        /* Remove gcc warning */
 
123
 
123
124
  uint32_t flags;       /* myisam layer flags (e.g. for myisamchk) */
 
125
 
124
126
  /* Just rebuild based on the defintion of the table */
125
127
  bool use_frm;
 
128
 
126
129
  /* new key cache when changing key cache */
127
130
  KEY_CACHE *key_cache;
128
 
  void init();
 
131
 
 
132
  void init()
 
133
  {
 
134
    flags= 0; 
 
135
    use_frm= false;
 
136
  };
129
137
} HA_CHECK_OPT;
130
138
 
131
139