diff options
author | Alfranio Correia <alfranio.correia@sun.com> | 2009-04-15 12:43:17 +0100 |
---|---|---|
committer | Alfranio Correia <alfranio.correia@sun.com> | 2009-04-15 12:43:17 +0100 |
commit | 6736e5209a870879e86f552f77db3da45d41ed65 (patch) | |
tree | 3b7124ea51b6df9dd9a21ecc7fc45a5d4fa32518 | |
parent | b27261a6f710850636ccac4616e2cbd15bc55442 (diff) | |
download | mariadb-git-6736e5209a870879e86f552f77db3da45d41ed65.tar.gz |
BUG#41793 rpl_binlog_corruption disabled in main (needs new mtr)
The test case was missing "let $slave_sql_errno= 1594;".
-rw-r--r-- | mysql-test/suite/rpl/t/disabled.def | 1 | ||||
-rw-r--r-- | mysql-test/suite/rpl/t/rpl_binlog_corruption.test | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/rpl/t/disabled.def b/mysql-test/suite/rpl/t/disabled.def index e7691776027..b7cb6da8127 100644 --- a/mysql-test/suite/rpl/t/disabled.def +++ b/mysql-test/suite/rpl/t/disabled.def @@ -10,5 +10,4 @@ # ############################################################################## -rpl_binlog_corruption : BUG#41793 2008-12-30 sven rpl_binlog_corruption disabled in main (needs new mtr) rpl_cross_version : BUG#42311 2009-03-27 joro rpl_cross_version fails on macosx diff --git a/mysql-test/suite/rpl/t/rpl_binlog_corruption.test b/mysql-test/suite/rpl/t/rpl_binlog_corruption.test index 39799180f8b..dfab035a7a8 100644 --- a/mysql-test/suite/rpl/t/rpl_binlog_corruption.test +++ b/mysql-test/suite/rpl/t/rpl_binlog_corruption.test @@ -34,6 +34,7 @@ source include/setup_fake_relay_log.inc; --echo ==== Test ==== START SLAVE SQL_THREAD; +let $slave_sql_errno= 1594; # ER_SLAVE_RELAY_LOG_READ_FAILURE source include/wait_for_slave_sql_error.inc; let $error= query_get_value(SHOW SLAVE STATUS, Last_SQL_Error, 1); --echo Last_SQL_Error = $error |