diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-11-15 23:27:37 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-11-15 23:27:37 +0100 |
commit | dd0a6227c7bbf98467b29e6a49fe553c8b76b454 (patch) | |
tree | d1d27283c0f624a8eba368632016f7076d8e8de6 /mysql-test/t/partition_innodb_plugin.test | |
parent | 027d647521ff8646a7e80a505db77d2062cd78d7 (diff) | |
download | mariadb-git-dd0a6227c7bbf98467b29e6a49fe553c8b76b454.tar.gz |
post-push fix for test to pass on windows
Diffstat (limited to 'mysql-test/t/partition_innodb_plugin.test')
-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 114adf67180..626e5d19b99 100644 --- a/mysql-test/t/partition_innodb_plugin.test +++ b/mysql-test/t/partition_innodb_plugin.test @@ -27,6 +27,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; @@ -44,12 +45,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 |