summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/galera/t/galera_rsu_wsrep_desync.test
blob: 882f846fe67fff7747d3b1baa7985ee50d832ae5 (plain)
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
#
# Test manipulating wsrep_desync while an RSU operation is in progress
#

--source include/galera_cluster.inc
--source include/have_innodb.inc
--source include/have_debug_sync.inc

# First, test wsrep_desync 1 > 0 during DDL

--connection node_1
CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB;

SET GLOBAL wsrep_desync=1;
SET wsrep_OSU_method=RSU;

SET DEBUG_SYNC = 'alter_table_before_open_tables WAIT_FOR continue';
--send ALTER TABLE t1 ADD COLUMN f2 INTEGER;


--connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1
--connect node_1b, 127.0.0.1, root, , test, $NODE_MYPORT_1

--connection node_1a
--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE STATE = 'debug sync point: alter_table_before_open_tables'
--source include/wait_condition.inc

SET GLOBAL wsrep_desync=0;
SET DEBUG_SYNC= 'now SIGNAL continue';

--connection node_1
--reap

SHOW CREATE TABLE t1;
SHOW VARIABLES LIKE 'wsrep_desync';
SET wsrep_OSU_method=TOI;

DROP TABLE t1;
SET DEBUG_SYNC= 'RESET';

# Next, test wsrep_desync 0 > 1 during DDL, currently not allowed

--connection node_1
CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB;

SET GLOBAL wsrep_desync=0;
SET wsrep_OSU_method=RSU;

SET DEBUG_SYNC = 'alter_table_before_create_table_no_lock WAIT_FOR continue';
--send ALTER TABLE t1 ADD COLUMN f2 INTEGER;

--connection node_1a

--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE STATE = 'debug sync point: alter_table_before_create_table_no_lock'
--source include/wait_condition.inc

# wsrep_desync=1 will block
--send SET GLOBAL wsrep_desync=1;


--connection node_1b
--sleep 2
--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE INFO = 'SET GLOBAL wsrep_desync=1'
--source include/wait_condition.inc

SET DEBUG_SYNC= 'now SIGNAL continue';

--connection node_1
--reap

--connection node_1a
--reap
SET GLOBAL wsrep_desync=0;

SHOW CREATE TABLE t1;

# Restore old state
SET wsrep_OSU_method=TOI;
DROP TABLE t1;
SET DEBUG_SYNC= 'RESET';

CALL mtr.add_suppression("Protocol violation");
CALL mtr.add_suppression("desync failed");

--connection node_2
CALL mtr.add_suppression("Protocol violation");