Skip to content

Commit 978bf35

Browse files
author
Joao Gramacho
committed
BUG#22186307: RPL.RPL_RELAYROTATE 'ROW':FAILS SPORADICALLY WITH REQUEST TO STOP SLAVE SQL THRE
The test case is missing the "for channel ''" (introduced after the multi source replication support) in the error message that should be suppressed.
1 parent c948a83 commit 978bf35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mysql-test/suite/rpl/r/rpl_relayrotate.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Warnings:
33
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
44
Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
55
[connection master]
6-
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');
6+
call mtr.add_suppression("Slave SQL for channel '': Request to stop slave SQL Thread received while applying a group that has non-transactional changes; waiting for completion of the group");
77
include/sync_slave_sql_with_master.inc
88
stop slave;
99
create table t1 (a int) engine=innodb;

mysql-test/suite/rpl/t/rpl_relayrotate.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
-- source include/not_ndb_default.inc
99
-- source include/have_innodb.inc
1010
-- source include/master-slave.inc
11-
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');
11+
call mtr.add_suppression("Slave SQL for channel '': Request to stop slave SQL Thread received while applying a group that has non-transactional changes; waiting for completion of the group");
1212
let $engine_type=innodb;
1313
-- source extra/rpl_tests/rpl_relayrotate.test
1414
--source include/rpl_end.inc

0 commit comments

Comments
 (0)