~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/columns.cc

  • Committer: Brian Aker
  • Date: 2011-01-10 01:11:06 UTC
  • mto: This revision was merged to the branch mainline in revision 2069.
  • Revision ID: brian@tangent.org-20110110011106-9zmvzhhkp5r90atu
Fixes naming conventions and issues around notnull being "true" by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
    push(column.numeric_options().is_autoincrement());
131
131
 
132
132
    /* IS_NULLABLE */
133
 
    push(column.constraints().is_nullable());
 
133
    push(not column.constraints().is_notnull());
134
134
 
135
135
    /* IS_INDEXED, IS_USED_IN_PRIMARY, IS_UNIQUE, IS_MULTI, IS_FIRST_IN_MULTI, INDEXES_FOUND_IN */
136
136
    bool is_indexed= false;