summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_set.result
blob: b0ea1b69e59a5741c402cce1a08298cc412c1e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
drop table if exists t1;
create table t1 (a set (' ','a','b') not null);
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` set('','a','b') NOT NULL default ''
) TYPE=MyISAM CHARSET=latin1
drop table t1;
create table t1 (a set (' ','a','b ') not null default 'b ');
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` set('','a','b') NOT NULL default 'b'
) TYPE=MyISAM CHARSET=latin1
drop table t1;