~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam.h

  • Committer: Brian Aker
  • Date: 2010-08-19 16:45:03 UTC
  • mfrom: (1711.6.11 staging)
  • Revision ID: brian@tangent.org-20100819164503-t7rhibp5s7bv3dtu
Merge of signals, plus build fix for FreeBSD. Also contains memset/constructor patch.

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 */