diff options
author | Luis Soares <luis.soares@oracle.com> | 2011-02-15 11:59:12 +0000 |
---|---|---|
committer | Luis Soares <luis.soares@oracle.com> | 2011-02-15 11:59:12 +0000 |
commit | 0d82c585aac7799fedfffedacae0ce6e90306b6e (patch) | |
tree | 77e89240b2e91c5517e14a42c91f6c629ce72a0e /mysql-test/extra | |
parent | a7662cf0a90ee4826b52209aa880f7e710ca95f9 (diff) | |
download | mariadb-git-0d82c585aac7799fedfffedacae0ce6e90306b6e.tar.gz |
BUG#11754075: BUG#45621: A FEW TEST FILES ARE DISABLED DUE TO WL#4284
Backporting the patch from BUG#11753489 into mysql-5.5
as it is already in mysql-trunk but not in mysql-5.5.
Diffstat (limited to 'mysql-test/extra')
-rw-r--r-- | mysql-test/extra/rpl_tests/rpl_failed_optimize.test | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/mysql-test/extra/rpl_tests/rpl_failed_optimize.test b/mysql-test/extra/rpl_tests/rpl_failed_optimize.test index 6817405b2d9..af048aeb92a 100644 --- a/mysql-test/extra/rpl_tests/rpl_failed_optimize.test +++ b/mysql-test/extra/rpl_tests/rpl_failed_optimize.test @@ -2,22 +2,24 @@ # # BUG#5551 "Failed OPTIMIZE TABLE is logged to binary log" -# Replication should work when OPTIMIZE TABLE timeouts, and -# when OPTIMIZE TABLE is executed on a non-existing table +# Replication should work when when OPTIMIZE TABLE is +# executed on a non-existing table. # +# Due to patch for BUG#989, checking that an OPTIMIZE +# that fails due to a lock wait timeout on an InnoDB table +# is not valid anymore, as an mdl lock is hit before, +# thence no timeout occurs, but instead a deadlock. +# + eval CREATE TABLE t1 ( a int ) ENGINE=$engine_type; BEGIN; INSERT INTO t1 VALUES (1); connection master1; -OPTIMIZE TABLE t1; - OPTIMIZE TABLE non_existing; sync_slave_with_master; -# End of 4.1 tests - connection master; select * from t1; commit; |