~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 23:14:37 UTC
  • mfrom: (2192.1.2 drizzle-staging)
  • Revision ID: brian@tangent.org-20110222231437-s9vawppxyq1s6ldk
Rollup changes in build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
  add_field("AUTO_INCREMENT", plugin::TableFunction::NUMBER, 0, false);
59
59
  add_field("TABLE_UUID", plugin::TableFunction::STRING, 36, true);
60
60
  add_field("TABLE_VERSION", plugin::TableFunction::NUMBER, 0, true);
 
61
  add_field("IS_REPLICATED", plugin::TableFunction::BOOLEAN, 0, false);
61
62
}
62
63
 
63
64
TablesTool::Generator::Generator(Field **arg) :
188
189
 
189
190
  /* TABLE_VERSION */
190
191
  push(getTableMessage().version());
 
192
 
 
193
  /* IS_REPLICATED */
 
194
  push(message::is_replicated(getTableMessage()));
191
195
}