mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
22b594267c
Post-fix: The test case pushed with the fix had each node acting as slave to the other two nodes with different set of filters on server_id's. The slave's gtid_slave_pos is updated after it processes the events received from master nodes irrespective of whether the events were filtered or not. Thus, sync_with_master_gtid.inc could unblock even on filtered events. As a result, sync_with_master_gtid.inc would fail to block until the desired changes have been replicated. Fixed by simplifying the topology. Also, modified CHANGE MASTER commands to ignore based on gtid_domain_id instead of server_id.
72 lines
1.7 KiB
Text
72 lines
1.7 KiB
Text
--source include/have_innodb.inc
|
|
--let $rpl_topology=1->2->3
|
|
--source include/rpl_init.inc
|
|
|
|
--connection server_2
|
|
--source include/stop_slave.inc
|
|
eval CHANGE MASTER TO
|
|
MASTER_USE_GTID = SLAVE_POS, IGNORE_DOMAIN_IDS = (2,3);
|
|
START SLAVE;
|
|
|
|
--connection server_3
|
|
--source include/stop_slave.inc
|
|
eval CHANGE MASTER TO
|
|
MASTER_USE_GTID = SLAVE_POS, IGNORE_DOMAIN_IDS = (2,3);
|
|
START SLAVE;
|
|
|
|
connection server_1;
|
|
|
|
CREATE TABLE t1 (a INT PRIMARY KEY, b VARCHAR(10)) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1, "m1");
|
|
INSERT INTO t1 VALUES (2, "m2"), (3, "m3"), (4, "m4");
|
|
|
|
SET @@session.gtid_domain_id=2;
|
|
--echo # The following should get filetered on slave.
|
|
CREATE TABLE t2 (a INT PRIMARY KEY, b VARCHAR(10)) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1, "m1");
|
|
INSERT INTO t2 VALUES (2, "m2"), (3, "m3"), (4, "m4");
|
|
|
|
--source include/save_master_gtid.inc
|
|
|
|
connection server_2;
|
|
--source include/sync_with_master_gtid.inc
|
|
|
|
SELECT * FROM t1 ORDER BY a;
|
|
--echo # Only 't1' should have replicated to slaves.
|
|
SHOW TABLES;
|
|
|
|
--source include/save_master_gtid.inc
|
|
|
|
connection server_3;
|
|
--source include/sync_with_master_gtid.inc
|
|
|
|
SELECT * FROM t1 ORDER BY a;
|
|
--echo # Only 't1' should have replicated to slaves.
|
|
SHOW TABLES;
|
|
|
|
--echo # Cleanup
|
|
--connection server_1
|
|
SET @@session.gtid_domain_id=1;
|
|
DROP TABLE t1;
|
|
SET @@session.gtid_domain_id=2;
|
|
DROP TABLE t2;
|
|
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_2
|
|
--source include/sync_with_master_gtid.inc
|
|
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_3
|
|
--source include/sync_with_master_gtid.inc
|
|
|
|
--connection server_2
|
|
STOP SLAVE;
|
|
CHANGE MASTER TO MASTER_USE_GTID = NO, IGNORE_DOMAIN_IDS = ();
|
|
|
|
--connection server_3
|
|
STOP SLAVE;
|
|
CHANGE MASTER TO MASTER_USE_GTID = NO, IGNORE_DOMAIN_IDS = ();
|
|
|
|
--echo # End of test.
|