~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.cc

Merge to trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  add_field("TABLE_CREATION_TIME");
55
55
  add_field("TABLE_UPDATE_TIME");
56
56
  add_field("TABLE_COMMENT", plugin::TableFunction::STRING, 2048, true);
 
57
  add_field("AUTO_INCREMENT", plugin::TableFunction::NUMBER, 0, false);
57
58
}
58
59
 
59
60
TablesTool::Generator::Generator(Field **arg) :
189
190
  {
190
191
    push();
191
192
  }
 
193
 
 
194
  /* AUTO_INCREMENT */
 
195
  push(getTableMessage().options().auto_increment_value());
192
196
}