~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/columns.cc

  • Committer: Brian Aker
  • Date: 2010-07-30 05:14:34 UTC
  • mfrom: (1672.1.2 drizzle)
  • Revision ID: brian@gaz-20100730051434-1izs0rftgskenu5f
Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
  {
141
141
    push(column.options().default_bin_value().c_str(), column.options().default_bin_value().length());
142
142
  }
 
143
  else if (column.options().has_default_expression())
 
144
  {
 
145
    push(column.options().default_expression());
 
146
  }
143
147
  else
144
148
  {
145
149
    push();
149
153
  push(column.options().default_null());
150
154
 
151
155
  /* COLUMN_DEFAULT_UPDATE */
152
 
  push(column.options().update_value());
 
156
  push(column.options().update_expression());
153
157
 
154
158
  /* IS_NULLABLE */
155
159
  push(column.constraints().is_nullable());