~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tests/t/default_null.test

  • Committer: Stewart Smith
  • Date: 2010-03-17 13:39:11 UTC
  • mto: This revision was merged to the branch mainline in revision 1352.
  • Revision ID: stewart@flamingspork.com-20100317133911-gf0yzcwpj5s3k34b
now that we've fixed the data_dictionary, we need to update all the result files to reflect the fact that we're now not returning garbage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (a int default null);
 
2
select COLUMN_NAME,COLUMN_DEFAULT,COLUMN_DEFAULT_IS_NULL FROM DATA_DICTIONARY.COLUMNS WHERE table_schema="test" and table_name="t1";
 
3
drop table t1;