summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_suspend_slave.result
blob: 02904812dd58473669d5a4ad15d3c3b9f7527b79 (plain)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
Suspending node_2 ...
INSERT INTO t1 VALUES (1);
Got one of the listed errors
Resuming node_2 ...
INSERT INTO t1 VALUES (1);
SELECT COUNT(*) = 1 FROM t1;
COUNT(*) = 1
1
DROP TABLE t1;