~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tests/r/default_null.result

  • Committer: Brian Aker
  • Date: 2010-07-12 06:26:42 UTC
  • Revision ID: brian@gaz-20100712062642-6flofbshd9rfbi0c
MErge in change to do YES/NO like standard requires.

Show diffs side-by-side

added added

removed removed

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