summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_slow_query_log.result
diff options
context:
space:
mode:
authorAlfranio Correia <alfranio.correia@oracle.com>2011-03-16 16:38:30 +0000
committerAlfranio Correia <alfranio.correia@oracle.com>2011-03-16 16:38:30 +0000
commit967beb46a66c2b5d9860dfc0980e02209a9e273e (patch)
tree7051d7ee2296d97bd90bfd71666e31ba214425e8 /mysql-test/suite/rpl/r/rpl_slow_query_log.result
parent62e83ad8c074b4a9c937760daf705b02c5d85e8b (diff)
downloadmariadb-git-967beb46a66c2b5d9860dfc0980e02209a9e273e.tar.gz
BUG#11877568 - RPL_SEMI_SYNC FAILS IN PB
Currently, rpl_semi_sync is failing in PB due to the warning message: "Slave SQL: slave SQL thread is being stopped in the middle of " "applying of a group having updated a non-transaction table; " "waiting for the group completion ..." The problem started happening after the fix for BUG#11762407 what was automatically suppressing some warning messages. To fix the current issue, we suppress the aforementioned warning message and exploit the opportunity to make the sentence clearer.
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_slow_query_log.result')
-rw-r--r--mysql-test/suite/rpl/r/rpl_slow_query_log.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_slow_query_log.result b/mysql-test/suite/rpl/r/rpl_slow_query_log.result
index 5bb1ba050a8..79b83b4ceb9 100644
--- a/mysql-test/suite/rpl/r/rpl_slow_query_log.result
+++ b/mysql-test/suite/rpl/r/rpl_slow_query_log.result
@@ -1,7 +1,7 @@
include/master-slave.inc
[connection master]
CALL mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
-call mtr.add_suppression("Slave SQL: slave SQL thread is being stopped in the middle of applying of a group having updated a non-transaction table; waiting for the group completion");
+call mtr.add_suppression("Slave SQL.*Request to stop slave SQL Thread received while applying a group that has non-transactional changes; waiting for completion of the group");
include/stop_slave.inc
SET @old_log_output= @@log_output;
SET GLOBAL log_output= 'TABLE';