~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam.h

  • Committer: Brian Aker
  • Date: 2010-08-18 03:47:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818034758-4cneukk4ppl8u855
Updating so that structures have constructor (removed memset calls).

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
  uint32_t old_options;
163
163
  uint8_t language;
164
164
  bool with_auto_increment;
 
165
 
 
166
  st_mi_create_info():
 
167
    index_file_name(0),
 
168
    data_file_name(0),
 
169
    max_rows(0),
 
170
    reloc_rows(0),
 
171
    auto_increment(0),
 
172
    data_file_length(0),
 
173
    key_file_length(0),
 
174
    old_options(0),
 
175
    language(0),
 
176
    with_auto_increment(0)
 
177
  { }
 
178
 
165
179
} MI_CREATE_INFO;
166
180
 
167
181
struct st_myisam_info;                  /* For referense */