summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_bf_abort_sleep.result
blob: 9cd6abad5a1b2d6302b89baed3dd0eda76d296a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
connection node_2;
SET AUTOCOMMIT=OFF;
INSERT INTO t1 VALUES (1);
SELECT SLEEP(1000);;
connection node_1;
INSERT INTO t1 VALUES (1);
connection node_2;
ERROR 40001: Deadlock: wsrep aborted transaction
wsrep_local_aborts_increment
1
DROP TABLE t1;