~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-19 20:32:03 UTC
  • mto: (1273.13.97 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100219203203-r35xkf1q3qhodqpy
Remove the old columns I_S table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  add_field("TABLE_NAME");
34
34
 
35
35
  add_field("COLUMN_NAME");
 
36
  add_field("COLUMN_TYPE");
36
37
  add_field("ORDINAL_POSITION", plugin::TableFunction::NUMBER);
37
38
  add_field("COLUMN_DEFAULT");
38
39
  add_field("COLUMN_DEFAULT_IS_NULL", plugin::TableFunction::BOOLEAN);
122
123
  /* COLUMN_NAME */
123
124
  push(column.name());
124
125
 
 
126
  /* COLUMN_TYPE */
 
127
  pushType(column.type());
 
128
 
125
129
  /* ORDINAL_POSITION */
126
130
  push(static_cast<int64_t>(column_iterator));
127
131