polardbxengine/mysql-test/suite/rpl_gtid/t/rpl_sql_delay.test

84 lines
2.5 KiB
Plaintext

#
# ==== Purpose ====
#
# This test checks if the sql delay is being applied in a simple master-slave
# topology.
#
# ==== Implementation ====
#
# The SQL_Delay is set to 5 seconds.
# For each for the six different transactions executed (two DDL, three DML and
# one multi-statement DML), the test verifies if the delay was the expected using
# replication timestamp infrastructure introduced by WL#7319.
#
# ==== References ====
#
# WL#7318 Delayed Replication: GTID based and relative to immediate master commit
# there is a specific test for mts
--source include/not_mts_slave_parallel_workers.inc
--let $rpl_skip_start_slave= 1
--source include/master-slave.inc
--let $delay= 7
--let $slave_sleep= 2
--source include/rpl_connection_slave.inc
--eval CHANGE MASTER TO MASTER_DELAY= $delay
source include/start_slave.inc;
# Verify that the DESIRED_DELAY in replication_applier_configuration table
# of performance_schema and SQL_Delay field of show slave status has the
# same value as the delay set through the master_delay of the CHM command.
--let $desired_delay= query_get_value(select *from performance_schema.replication_applier_configuration,DESIRED_DELAY,1)
--let $assert_text= Assert that the desired delay from performance_schema is same as set in the Change master to command.
--let $assert_cond= $desired_delay = $delay
--source include/assert.inc
--let $sql_delay= query_get_value(show slave status,SQL_Delay,1)
--let $assert_text= Assert that the sql_delay in show slave status is same as set in the Change master to command.
--let $assert_cond= $sql_delay = $delay
--source include/assert.inc
--source include/rpl_connection_master.inc
CREATE TABLE t1 (a INT);
--let $trx_num= 1
--source extra/rpl_tests/check_slave_delay.inc
INSERT INTO t1 VALUES (1);
--let $trx_num= 2
--source extra/rpl_tests/check_slave_delay.inc
UPDATE t1 SET a=2;
--let $trx_num= 3
--source extra/rpl_tests/check_slave_delay.inc
DELETE FROM t1 WHERE a=2;
--let $trx_num= 4
--source extra/rpl_tests/check_slave_delay.inc
START TRANSACTION;
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
INSERT INTO t1 VALUES (3);
COMMIT;
--let $trx_num= 5
--source extra/rpl_tests/check_slave_delay.inc
DROP TABLE t1;
--let $trx_num= 6
--source extra/rpl_tests/check_slave_delay.inc
# Cleanup
--source include/rpl_connection_slave.inc
--source include/stop_slave_sql.inc
CHANGE MASTER TO MASTER_DELAY= 0;
--source include/start_slave_sql.inc
--source include/rpl_connection_master.inc
--source include/rpl_end.inc