summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera_3nodes_sr/t/galera_vote_sr.inc
blob: 776291cc9c0cc52e9ab6179bd64617ae1ce9b669 (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
#
# set $inconsistent_fragment to determine at which fragment inconsistency
# happens
#

--connection node_1
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 BLOB) ENGINE=InnoDB;

# Introduce inconsistency
--connection node_2
SET SESSION wsrep_on=OFF;
--eval INSERT INTO t1 VALUES ($inconsistent_fragment, 'X')
SET SESSION wsrep_on=ON;
DELETE FROM t1 WHERE f1 = 2;

# Perform an SR transaction that will hit the inconsistency
--connection node_1
--let $fragment_size = 16384
SET AUTOCOMMIT=OFF;
--eval SET SESSION wsrep_trx_fragment_size = $fragment_size
START TRANSACTION;
--eval INSERT INTO t1 VALUES (1, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (2, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (3, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (4, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (5, REPEAT('A', $fragment_size))
COMMIT;
SELECT COUNT(*) AS expect_0 FROM mysql.wsrep_streaming_log;

# Perform another SR transaction in order to have stuff in the
# wsrep_streaming_log table
START TRANSACTION;
--eval INSERT INTO t1 VALUES (11, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (12, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (13, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (14, REPEAT('A', $fragment_size))
--eval INSERT INTO t1 VALUES (15, REPEAT('A', $fragment_size))

# Node #2 has dropped from the cluster due to voting
--let $wait_condition = SELECT VARIABLE_VALUE = 2 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
--source include/wait_condition.inc

# Bring node #2 back via SST
--connection node_2
SET SESSION wsrep_on=OFF;
--source include/shutdown_mysqld.inc
--source include/wait_until_disconnected.inc
--echo Starting mysqld
--source include/start_mysqld.inc

--connection node_1
--let $wait_condition = SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
--source include/wait_condition.inc

--connection node_2
--let $wait_condition = SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_ready';
--source include/wait_condition.inc

# Node #2 should have some entries in its SR table post-restart
SELECT COUNT(*) > 0 FROM mysql.wsrep_streaming_log;

# Commit second SR transaction
--connection node_1
COMMIT;

# Confirm that all nodes are identical
--connection node_1
SELECT COUNT(*) AS expect_0 FROM mysql.wsrep_streaming_log;
SELECT COUNT(*) AS expect_10 FROM t1;

--connection node_2
SELECT COUNT(*) AS expect_0 FROM mysql.wsrep_streaming_log;
SELECT COUNT(*) AS expect_10 FROM t1;

--connection node_3
SELECT COUNT(*) AS expect_0 FROM mysql.wsrep_streaming_log;
SELECT COUNT(*) AS expect_10 FROM t1;

--connection node_1
DROP TABLE t1;