File: rpl_gtid_atomic_cross_repl.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • 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 (55 lines) | stat: -rw-r--r-- 1,866 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
# ==== Purpose ====
# The test considers scenarios of OLD -> NEW replication, where NEW stands
# for WL9175-based slave server, and OLD is of a prior version master.
# This file consists of cases that need GTID=ON.
#
# ==== References ====
# WL#9175  Correct recovery of DDL statements/transactions by binary log
# Bug #25665464   CROSS VERSION RPL BEHAVES DIFFERENTLY VARYING RELAY LOG INFO REPOSITORY CONF
#

--source include/have_debug.inc
--source include/have_binlog_format_row.inc

#
# It's proved that the slave applier stops with an expected error
# of mismatch between one that is recorded on master and the actual.
# The slave applier does not update the execution coordinates so
# at retry when the error simulation is withdrawn the event must
# complete to good.
#

--source include/master-slave.inc

--source include/rpl_connection_master.inc
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings

--source include/sync_slave_sql_with_master.inc
# --source include/rpl_connection_slave.inc
call mtr.add_suppression("The replica coordinator and worker threads are stopped");
call mtr.add_suppression("Query caused different errors on source and replica");

SET @@global.debug="+d,simulate_error_in_ddl";

--source include/rpl_connection_master.inc
CREATE TABLE t1 (a int);

--source include/rpl_connection_slave.inc

--let $slave_sql_errno= convert_error(ER_INCONSISTENT_ERROR)
--source include/wait_for_slave_sql_error.inc

# Slave should not be able to start the SQL thread
START SLAVE SQL_THREAD;
--let $slave_sql_errno= convert_error(ER_INCONSISTENT_ERROR)
--source include/wait_for_slave_sql_error.inc

# Removing the debug instrumentation should make slave to proceed
SET @@global.debug="-d,simulate_error_in_ddl";
--source include/start_slave_sql.inc

--source include/rpl_connection_master.inc
DROP TABLE t1;
--source include/rpl_end.inc