~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merged trunk and mysql-protocol-password-udf changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (a varbinary(10) default '\0\0hi', b int default 42, c varchar(10) default "hello");
 
2
insert into t1 values ();
 
3
select hex(a) from t1;
 
4
select COLUMN_NAME,HEX(COLUMN_DEFAULT) from data_dictionary.columns where table_schema="test" and table_name="t1";
 
5
drop table t1;