summaryrefslogtreecommitdiff
path: root/mysql-test/suite/engines/funcs/t/tc_column_set.test
diff options
context:
space:
mode:
authorOmer BarNir <omer@mysql.com>2010-03-17 23:42:07 -0700
committerOmer BarNir <omer@mysql.com>2010-03-17 23:42:07 -0700
commitc92b9b7315c01e87b1099e7df182213a1d8ffa6f (patch)
tree096cc41e4d541dd16c84cb829e630fef3d5baba7 /mysql-test/suite/engines/funcs/t/tc_column_set.test
parent96d4a0384629e5cddc93ee215e7af484e4b95bde (diff)
downloadmariadb-git-c92b9b7315c01e87b1099e7df182213a1d8ffa6f.tar.gz
Test suites for engine testing, moved from test-extra so will be available
for general use. mysql-test/Makefile.am: Adding directories of additional test suites mysql-test/mysql-stress-test.pl: Adding check for additional errors checking during test run
Diffstat (limited to 'mysql-test/suite/engines/funcs/t/tc_column_set.test')
-rw-r--r--mysql-test/suite/engines/funcs/t/tc_column_set.test14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/suite/engines/funcs/t/tc_column_set.test b/mysql-test/suite/engines/funcs/t/tc_column_set.test
new file mode 100644
index 00000000000..e5e9adde42b
--- /dev/null
+++ b/mysql-test/suite/engines/funcs/t/tc_column_set.test
@@ -0,0 +1,14 @@
+--disable_warnings
+DROP TABLE IF EXISTS t7;
+--enable_warnings
+CREATE TABLE t7(c1 SET('a','b','c') NULL);
+SHOW TABLES;
+let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
+--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
+SHOW CREATE TABLE t7; DROP TABLE t7; SHOW TABLES;
+CREATE TABLE t7(c1 SET('a','b','c') NOT NULL);
+SHOW TABLES;
+let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
+--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
+SHOW CREATE TABLE t7; DROP TABLE t7; SHOW TABLES;
+