Current Path : /home/usr.opt/mysql57/mysql-test/suite/engines/funcs/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/engines/funcs/r/tc_column_set.result |
DROP TABLE IF EXISTS t7; CREATE TABLE t7(c1 SET('a','b','c') NULL); SHOW TABLES; Tables_in_test t7 SHOW CREATE TABLE t7; Table Create Table t7 CREATE TABLE `t7` ( `c1` set('a','b','c') DEFAULT NULL ) ENGINE=ENGINE DEFAULT CHARSET=latin1 DROP TABLE t7; SHOW TABLES; Tables_in_test CREATE TABLE t7(c1 SET('a','b','c') NOT NULL); SHOW TABLES; Tables_in_test t7 SHOW CREATE TABLE t7; Table Create Table t7 CREATE TABLE `t7` ( `c1` set('a','b','c') NOT NULL ) ENGINE=ENGINE DEFAULT CHARSET=latin1 DROP TABLE t7; SHOW TABLES; Tables_in_test