diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-11-15 23:31:04 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-11-15 23:31:04 +0100 |
commit | 15e5eaef5bfc1489d7aa8d2b32d54778ad12c054 (patch) | |
tree | cd81e6b0552a199bfbd6f7816fbaa46da22e45d0 | |
parent | f3804527f35b94b64b1bafb12b5535413f820147 (diff) | |
parent | 67f640fd50586c92109f9d8a46719b9a4f68914b (diff) | |
download | mariadb-git-15e5eaef5bfc1489d7aa8d2b32d54778ad12c054.tar.gz |
merge
-rw-r--r-- | mysql-test/t/partition_innodb_plugin.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/partition_innodb_plugin.test b/mysql-test/t/partition_innodb_plugin.test index 48a7586cd4a..e8b73687177 100644 --- a/mysql-test/t/partition_innodb_plugin.test +++ b/mysql-test/t/partition_innodb_plugin.test @@ -25,6 +25,7 @@ user_num CHAR(10) KEY_BLOCK_SIZE=4 PARTITION BY HASH(id) PARTITIONS 1; +--replace_result #p# #P# --list_files $MYSQLD_DATADIR/test SHOW CREATE TABLE t1; @@ -42,12 +43,14 @@ LOCK TABLE t1 WRITE; --error ER_GET_ERRNO ALTER TABLE t1 ADD PARTITION PARTITIONS 1; +--replace_result #p# #P# --list_files $MYSQLD_DATADIR/test --echo # This SET is not needed to reproduce the bug, --echo # it is here just to make the test case more realistic SET innodb_strict_mode = OFF; ALTER TABLE t1 ADD PARTITION PARTITIONS 2; +--replace_result #p# #P# --list_files $MYSQLD_DATADIR/test # really bug#56172 |