~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.cc

  • Committer: lbieber
  • Date: 2010-10-02 15:03:20 UTC
  • mfrom: (1808.1.3 build)
  • Revision ID: lbieber@orisndriz08-20101002150320-b4h2za7uf98juxql
Merge Andrew - fix bug 652645 - Bad error handling with Drizzledump connect
Merge Andrew - fix bug 652228 - drizzledump not dumping auto-inc when connecting to drizzle servers
Merge Andrew - fix bug 649844 - Clean up and fix some drizzledump options along with some documentation fixes

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
}