File: rpl_sql_delay.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (80 lines) | stat: -rw-r--r-- 2,446 bytes parent folder | download
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
#
# ==== 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

--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 REPLICATION SOURCE TO SOURCE_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 REPLICATION SOURCE TO SOURCE_DELAY= 0;
--source include/start_slave_sql.inc

--source include/rpl_connection_master.inc
--source include/rpl_end.inc