summaryrefslogtreecommitdiff
path: root/mysql-test/t/type_set.test
blob: 7f1a75e5dbd6a707aec31aba1f1a5a4d21351204 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# Test of SET with space
#

drop table if exists t1;
create table t1 (a set (' ','a','b') not null);
show create table t1;
drop table t1;
create table t1 (a set (' ','a','b ') not null default 'b ');
show create table t1;
drop table t1;