summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/t/MDEV-6860.test
blob: 3a8c98f317f4a8cddd95fc2264c476e9c5bfdaa4 (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
--source include/have_innodb.inc

--source include/galera_cluster.inc

--connection node_2
--disable_query_log
--eval CHANGE MASTER TO  MASTER_HOST='127.0.0.1', MASTER_USER='root', MASTER_PORT=$NODE_MYPORT_3, MASTER_USE_GTID=slave_pos;
--enable_query_log
START SLAVE;

--connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3
--connection node_3
--let $inserts=1000
CREATE TABLE t1 (f1 int, f2 int) ENGINE=InnoDB;

--let $count=0
--disable_query_log
while($count < $inserts)
{
  --eval insert into t1 values ($count,1)
  --inc $count
}
--enable_query_log

--connection node_2

--let $wait_condition = SELECT COUNT(*) = $inserts FROM t1
--source include/wait_condition.inc

--connection node_1
--let $wait_condition = SELECT COUNT(*) = $inserts FROM t1
--source include/wait_condition.inc

--connection node_3
DROP TABLE t1;

--connection node_2
--let $wait_condition = SELECT COUNT(*) = 0 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'test'
--source include/wait_condition.inc

STOP SLAVE;
RESET SLAVE ALL;