summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/wsrep/r/wsrep-recover-v25.result
blob: c6e9246a75353d27877db28fe6922f2780943181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Kill the server
Expect seqno 1
1
CREATE TABLE t1 (f1 INT PRIMARY KEY) ENGINE=InnoDB;
# Kill the server
Expect seqno 3
3
INSERT INTO t1 VALUES (5);
# Kill the server
Expect seqno 5
5
SELECT VARIABLE_VALUE `expect 6` FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_last_committed';
expect 6
6
DROP TABLE t1;