mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
14 lines
289 B
Plaintext
14 lines
289 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
|
connection node_2;
|
|
SET AUTOCOMMIT=OFF;
|
|
FLUSH TABLES WITH READ LOCK;;
|
|
connection node_1;
|
|
INSERT INTO t1 VALUES (1);
|
|
connection node_2;
|
|
UNLOCK TABLES;
|
|
wsrep_local_aborts_increment
|
|
1
|
|
DROP TABLE t1;
|