mariadb/mysql-test/suite/wsrep/r/wsrep-recover-v25.result

16 lines
327 B
Text
Raw Normal View History

2019-01-27 14:44:35 +01:00
# Kill the server
Expect seqno 1
1
2019-02-05 11:48:02 +01:00
CREATE TABLE t1 (f1 INT PRIMARY KEY) ENGINE=InnoDB;
# Kill the server
Expect seqno 3
3
2019-01-27 14:44:35 +01:00
INSERT INTO t1 VALUES (5);
# Kill the server
2019-02-05 11:48:02 +01:00
Expect seqno 5
5
SELECT VARIABLE_VALUE `expect 6` FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_last_committed';
expect 6
6
2019-01-27 14:44:35 +01:00
DROP TABLE t1;