diff options
Diffstat (limited to 'mysql-test/t/shw000001.test')
-rw-r--r-- | mysql-test/t/shw000001.test | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/t/shw000001.test b/mysql-test/t/shw000001.test index c92d710a49c..a1ba2a18faf 100644 --- a/mysql-test/t/shw000001.test +++ b/mysql-test/t/shw000001.test @@ -1,7 +1,8 @@ use test; -drop table if exists test; -create table 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 test ; +@r/shw000001.result show create table t1 ; +drop table t1; |