summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_bf_abort_lock_table.result
blob: 81b5816ddbec61a6ce07628ecb6242f8df7eca7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
connection node_2;
SET AUTOCOMMIT=OFF;
LOCK TABLE t1 WRITE;
connection node_1;
INSERT INTO t1 VALUES (2);
connection node_2;
UNLOCK TABLES;
COMMIT;
SELECT COUNT(*) = 1 FROM t1;
COUNT(*) = 1
1
wsrep_local_aborts_increment
1
DROP TABLE t1;