@@ -37,10 +37,8 @@ INSERT INTO t1 VALUES (4);
37
37
INSERT INTO t1 VALUES (13);
38
38
39
39
--source include/kill_galera.inc
40
- --sleep 5
41
40
42
41
--connection node_1
43
- --source include/wait_until_connected_again.inc
44
42
INSERT INTO t1 VALUES (11);
45
43
46
44
--connection node_2
@@ -51,8 +49,6 @@ INSERT INTO t1 VALUES (14);
51
49
52
50
--connection node_3
53
51
--source include/start_mysqld.inc
54
- --sleep 5
55
- --source include/wait_until_connected_again.inc
56
52
57
53
INSERT INTO t1 VALUES (131);
58
54
@@ -64,10 +60,8 @@ INSERT INTO t1 VALUES (131);
64
60
INSERT INTO t1 VALUES (22);
65
61
66
62
--source include/kill_galera.inc
67
- --sleep 5
68
63
69
64
--connection node_1
70
- --source include/wait_until_connected_again.inc
71
65
INSERT INTO t1 VALUES (21);
72
66
73
67
--connection node_3
@@ -78,8 +72,6 @@ INSERT INTO t1 VALUES (24);
78
72
79
73
--connection node_2
80
74
--source include/start_mysqld.inc
81
- --sleep 5
82
- --source include/wait_until_connected_again.inc
83
75
84
76
INSERT INTO t1 VALUES (221);
85
77
@@ -91,10 +83,8 @@ INSERT INTO t1 VALUES (221);
91
83
INSERT INTO t1 VALUES (34);
92
84
93
85
--source include/kill_galera.inc
94
- --sleep 5
95
86
96
87
--connection node_1
97
- --source include/wait_until_connected_again.inc
98
88
INSERT INTO t1 VALUES (31);
99
89
100
90
--connection node_2
@@ -105,8 +95,6 @@ INSERT INTO t1 VALUES (33);
105
95
106
96
--connection node_4
107
97
--source include/start_mysqld.inc
108
- --sleep 5
109
- --source include/wait_until_connected_again.inc
110
98
111
99
INSERT INTO t1 VALUES (341);
112
100
@@ -119,31 +107,33 @@ INSERT INTO t1 VALUES (341);
119
107
--let $wait_condition = SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
120
108
--source include/wait_condition.inc
121
109
122
- SELECT COUNT(*) = 19 FROM t1;
110
+ SELECT COUNT(*) AS EXPECT_19 FROM t1;
123
111
124
112
--connection node_2
125
113
SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
126
- SELECT COUNT(*) = 19 FROM t1;
114
+ SELECT COUNT(*) AS EXPECT_19 FROM t1;
127
115
128
116
--connection node_3
129
117
SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
130
- SELECT COUNT(*) = 19 FROM t1;
118
+ SELECT COUNT(*) AS EXPECT_19 FROM t1;
131
119
132
120
--connection node_4
133
121
SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
134
- SELECT COUNT(*) = 19 FROM t1;
122
+ SELECT COUNT(*) AS EXPECT_19 FROM t1;
135
123
136
124
--connection node_1
137
125
DROP TABLE t1;
138
126
CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside");
139
127
CALL mtr.add_suppression("WSREP: gcs_caused\\(\\) returned -1 \\(Operation not permitted\\)");
140
128
141
129
--connection node_2
130
+ CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside");
142
131
CALL mtr.add_suppression("Action message in non-primary configuration from member 0");
143
132
144
133
--connection node_3
145
134
CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside");
146
135
CALL mtr.add_suppression("Action message in non-primary configuration from member 0");
147
136
148
137
--connection node_4
138
+ CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside");
149
139
CALL mtr.add_suppression("Action message in non-primary configuration from member 0");
0 commit comments