~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/columns.cc

  • Committer: Brian Aker
  • Date: 2010-02-17 01:56:39 UTC
  • mfrom: (1273.13.69 build)
  • Revision ID: brian@gaz-20100217015639-ou3s722vekucn5fd
Many updates. Brian, Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
  add_field("NUMERIC_SCALE", plugin::TableFunction::NUMBER);
44
44
 
45
45
  add_field("COLLATION_NAME");
 
46
 
 
47
  add_field("COLUMN_KEY", plugin::TableFunction::BOOLEAN);
 
48
  add_field("EXTRA", 20);
46
49
  add_field("COLUMN_COMMENT", 1024);
47
50
}
48
51
 
139
142
 /* "COLLATION_NAME" */
140
143
  push(column.string_options().collation());
141
144
 
 
145
 /* "COLUMN_KEY" */
 
146
  push(false);
 
147
 
 
148
 /* "EXTRA" */
 
149
  push();
 
150
 
142
151
 /* "COLUMN_COMMENT" */
143
152
  push(column.comment());
144
153
}