~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:41:47 UTC
  • mfrom: (1273.13.66 build)
  • Revision ID: brian@gaz-20100216014147-d14la0yrezusgisn
Merge of Brian stuff

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()));