mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Change of user interface to be more logical and more in line with expectations to work similar to old-style replication. User can now explicitly choose in CHANGE MASTER whether binlog position is taken into account (master_gtid_pos=current_pos) or not (master_gtid_pos= slave_pos) when slave connects to master. @@gtid_pos is replaced by three separate variables @@gtid_slave_pos (can be set by user, replicated GTIDs only), @@gtid_binlog_pos (read only), and @@gtid_current_pos (a combination of the two, most recent GTID within each domain). mysql.rpl_slave_state is renamed to mysql.gtid_slave_pos to match. This fixes MDEV-4474.
56 lines
1.3 KiB
Text
56 lines
1.3 KiB
Text
--let $rpl_topology=1->2
|
|
--source include/rpl_init.inc
|
|
--source include/have_binlog_format_statement.inc
|
|
|
|
--connection server_1
|
|
select @@global.log_slave_updates;
|
|
|
|
CREATE TABLE t1 (a INT PRIMARY KEY, b INT);
|
|
INSERT INTO t1 VALUES (1, 1);
|
|
INSERT INTO t1 VALUES (2, 1);
|
|
--save_master_pos
|
|
|
|
--connection server_2
|
|
select @@global.log_slave_updates;
|
|
|
|
--sync_with_master
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
--source include/stop_slave.inc
|
|
|
|
INSERT INTO t1 VALUES (3, 2);
|
|
INSERT INTO t1 VALUES (4, 2);
|
|
|
|
--source include/show_binlog_events.inc
|
|
|
|
--connection server_1
|
|
--replace_result $SLAVE_MYPORT SLAVE_PORT
|
|
eval CHANGE MASTER TO master_host = '127.0.0.1', master_port = $SLAVE_MYPORT,
|
|
master_user = 'root', master_use_gtid = current_pos;
|
|
START SLAVE;
|
|
--let $wait_condition= SELECT COUNT(*) = 4 FROM t1
|
|
--source include/wait_condition.inc
|
|
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
--source include/stop_slave.inc
|
|
RESET SLAVE;
|
|
INSERT INTO t1 VALUES (5, 1);
|
|
INSERT INTO t1 VALUES (6, 1);
|
|
|
|
--connection server_2
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
eval CHANGE MASTER TO master_host = '127.0.0.1', master_port = $MASTER_MYPORT,
|
|
master_use_gtid = current_pos;
|
|
START SLAVE;
|
|
--let $wait_condition= SELECT COUNT(*) = 6 FROM t1
|
|
--source include/wait_condition.inc
|
|
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
# Cleanup.
|
|
|
|
--connection server_1
|
|
DROP TABLE t1;
|
|
|
|
--source include/rpl_end.inc
|