~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.cc

  • Committer: Brian Aker
  • Date: 2010-05-27 01:25:56 UTC
  • mfrom: (1567.1.4 new-staging)
  • Revision ID: brian@gaz-20100527012556-5zgkirkl7swbigd6
Merge of Brian, Paul. PBXT compile issue, and test framework cleanup. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  add_field("TABLE_COLLATION");
61
61
  add_field("TABLE_CREATION_TIME");
62
62
  add_field("TABLE_UPDATE_TIME");
63
 
  add_field("TABLE_COMMENT", 2048);
 
63
  add_field("TABLE_COMMENT", plugin::TableFunction::STRING, 2048, true);
64
64
}
65
65
 
66
66
TablesTool::Generator::Generator(Field **arg) :
253
253
  push(buffer);
254
254
 
255
255
  /* TABLE_COMMENT */
256
 
  push(table_proto.options().comment());
 
256
  if (table_proto.options().has_comment())
 
257
  {
 
258
    push(table_proto.options().comment());
 
259
  }
 
260
  else
 
261
  {
 
262
    push();
 
263
  }
257
264
}