summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_bf_abort_for_update.result
blob: 3978a3df193f811481531e9814f561a386c66569 (plain)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
SET AUTOCOMMIT=OFF;
START TRANSACTION;
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (1);
SELECT * FROM t1 FOR UPDATE;
ERROR 40001: Deadlock found when trying to get lock; try restarting transaction
wsrep_local_aborts_increment
1
DROP TABLE t1;