~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tests/t/no_default.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 primary key);
 
2
--error 1364
 
3
insert into t1 values ();
 
4
select COLUMN_NAME,COLUMN_DEFAULT,COLUMN_DEFAULT_IS_NULL FROM DATA_DICTIONARY.COLUMNS WHERE TABLE_SCHEMA="test" AND TABLE_NAME="t1";
 
5
drop table t1;
 
6