~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/system_table_ms.cc

updating to latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
                        
321
321
                field_constraints= field->mutable_constraints();
322
322
                if (info->field_flags & NOT_NULL_FLAG)
323
 
                        field_constraints->set_is_nullable(false);
324
 
                else
325
 
                        field_constraints->set_is_nullable(true);
 
323
                        field_constraints->set_is_notnull(true);
326
324
                
327
325
                if (info->field_flags & UNSIGNED_FLAG)
328
326
                        field_constraints->set_is_unsigned(true);