~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-16 01:28:56 UTC
  • mto: (1273.16.5 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1301.
  • Revision ID: brian@gaz-20100216012856-huxialrgud0shhw5
Modify return type for COLUMNS type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
  push(column.constraints().is_nullable());
123
123
 
124
124
  /* DATATYPE */
125
 
  push(column.type());
 
125
  pushType(column.type());
126
126
 
127
127
 /* "CHARACTER_MAXIMUM_LENGTH" */
128
128
  push(static_cast<int64_t>(column.string_options().length()));