diff options
author | Chad MILLER <chad@mysql.com> | 2009-04-17 16:00:53 -0400 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2009-04-17 16:00:53 -0400 |
commit | 04d83cc85c42ecb7c03cb139bee6b23e8881466e (patch) | |
tree | 26a59da68994ddd577577a59c944a9d0a8bb1e00 /mysql-test/t/partition_mgm.test | |
parent | b27261a6f710850636ccac4616e2cbd15bc55442 (diff) | |
download | mariadb-git-04d83cc85c42ecb7c03cb139bee6b23e8881466e.tar.gz |
Move test for bug 39559, which uses command-line mysql client
to separate test file that doesn't permit mysqld embedded in
mysqltest.
Also, fix different comment handling in a incorrect new-to-5.1
test.
Diffstat (limited to 'mysql-test/t/partition_mgm.test')
-rw-r--r-- | mysql-test/t/partition_mgm.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/partition_mgm.test b/mysql-test/t/partition_mgm.test index e17edf0a4e5..bf9b5ed174e 100644 --- a/mysql-test/t/partition_mgm.test +++ b/mysql-test/t/partition_mgm.test @@ -67,13 +67,14 @@ drop table t1; # # Verification tests for bug#14326 # ---error ER_PARSE_ERROR CREATE TABLE t1 (a INT) /*!50100 PARTITION BY HASH (a) /* Test of multi-line comment */ PARTITIONS 5 */; +SHOW CREATE TABLE t1; +DROP TABLE t1; CREATE TABLE t1 (a INT) /*!50100 PARTITION BY HASH (a) -- with a single line comment embedded |