~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2009-11-24 02:06:37 UTC
  • mfrom: (1223.1.7 push)
  • Revision ID: brian@gaz-20091124020637-9gb65vj98x1arydm
MergeĀ forĀ staging.

Show diffs side-by-side

added added

removed removed

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