blob: a1ba2a18fafe80f5a9d85cd2f158f7f26b49a4e4 (
plain)
1
2
3
4
5
6
7
8
|
use test;
drop table if exists t1;
create table t1 (
test_set set( 'val1', 'val2', 'val3' ) not null default '',
name char(20) default 'O''Brien'
) comment = 'it\'s a table' ;
@r/shw000001.result show create table t1 ;
drop table t1;
|