summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/mdev_9290.result
blob: 276ab9e8ecb600e4312582f80fd0be7f8de0ba9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# MDEV-9290 : InnoDB: Assertion failure in file trx0sys.cc line 353
# InnoDB: Failing assertion: xid_seqno > trx_sys_cur_xid_seqno
#
connection node_1;
CREATE TABLE t1 (i INT) ENGINE=InnoDB;
connection node_2;
START TRANSACTION;
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
COMMIT;
connection node_1;
SELECT * FROM t1;
i
1
2
DROP TABLE t1;
disconnect node_2;
disconnect node_1;