1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
################################################################################
#
# GTID_PURGED can't be set while GR plugin is running. This test shall verify
# that.
#
# Test:
# 0) The test requires two servers: M1 and M2.
# 1) Execute a few transactions locally on M1 before starting GR.
# 2) Set GTID_PURGED a few transactions ahead on M1.
# 3) Start GR on both members and verify that the group stabilizes itself.
# 4) Try to modify the GTID_PURGED with GR running. It should fail with
# ER_UPDATE_GTID_PURGED_WITH_GR on each member.
# 5) Stop GR and verify that it is possible to set GTID_PURGED again on both
# members.
# 6) Cleanup.
#
################################################################################
--let $group_replication_group_name = 7c4f89da-55d2-4a9a-8aa1-b9e854dcf286
--source include/have_group_replication_plugin.inc
#--source include/big_test.inc
--echo
--echo #########################################################################
--echo # 0) The test requires two servers: M1 and M2.
--echo #########################################################################
--echo
--let $rpl_skip_group_replication_start = 1
--source include/group_replication.inc
--echo
--echo #########################################################################
--echo # 1) Execute a few transactions locally on M1 before starting GR.
--echo #########################################################################
--echo
CREATE TABLE t1(a INT PRIMARY KEY);
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
INSERT INTO t1 VALUES (3);
--echo
--echo #########################################################################
--echo # 2) Set GTID_PURGED a few transactions ahead on M1.
--echo #########################################################################
--echo
--let $member1_uuid = `SELECT @@GLOBAL.server_uuid`
SET sql_log_bin = 0;
--source include/gtid_utils.inc
SET sql_log_bin = 1;
RESET MASTER;
--eval SET GLOBAL GTID_PURGED = "$group_replication_group_name:1-3"
--let $assert_text = GTID_PURGED should contain the first 3 transactions
--let $assert_cond = GTID_IS_EQUAL(@@GLOBAL.GTID_PURGED, "$group_replication_group_name:1-3")
--source include/assert.inc
RESET MASTER;
--echo
--echo #########################################################################
--echo # 3) Start GR on both members and verify that the group stabilizes
--echo # itself.
--echo #########################################################################
--echo
--source include/start_and_bootstrap_group_replication.inc
--source include/rpl_sync.inc
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
SET sql_log_bin = 0;
--source include/gtid_utils.inc
SET sql_log_bin = 1;
--let $member2_uuid = `SELECT @@GLOBAL.server_uuid`
--source include/start_group_replication.inc
--echo
--echo #########################################################################
--echo # 4) Try to modify the GTID_PURGED with GR running. It should fail with
--echo # ER_UPDATE_GTID_PURGED_WITH_GR on each member.
--echo #########################################################################
--echo
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
--error ER_UPDATE_GTID_PURGED_WITH_GR
--eval SET GLOBAL GTID_PURGED = "$group_replication_group_name:4"
--let $assert_text = GTID_PURGED should contain the 4th transaction
--let $assert_cond = GTID_IS_EQUAL(@@GLOBAL.GTID_PURGED, "")
--source include/assert.inc
--echo
--echo #########################################################################
--echo # 5) Stop GR and verify that it is possible to set GTID_PURGED again on
--echo # both members.
--echo #########################################################################
--echo
--source include/stop_group_replication.inc
--eval SET GLOBAL GTID_PURGED = "$group_replication_group_name:4"
--let $assert_text = GTID_PURGED should contain the 4th transaction
--let $assert_cond = GTID_IS_EQUAL(@@GLOBAL.GTID_PURGED, "$group_replication_group_name:4")
--source include/assert.inc
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
--source include/stop_group_replication.inc
--eval SET GLOBAL GTID_PURGED = "$group_replication_group_name:4"
SELECT @@GLOBAL.GTID_PURGED;
--let $assert_text = GTID_PURGED should contain the 4th transaction
--let $assert_cond = GTID_IS_EQUAL(@@GLOBAL.GTID_PURGED, "$group_replication_group_name:4")
--source include/assert.inc
--echo
--echo #########################################################################
--echo # 6) Cleanup.
--echo #########################################################################
--echo
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
DROP TABLE t1;
SET SESSION sql_log_bin= 0;
--source include/gtid_utils_end.inc
SET SESSION sql_log_bin= 1;
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
SET SESSION sql_log_bin= 0;
--source include/gtid_utils_end.inc
SET SESSION sql_log_bin= 1;
--source include/group_replication_end.inc
|