mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
15 lines
436 B
Text
15 lines
436 B
Text
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(6)) ENGINE=InnoDB;
|
|
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
|
|
connection node_2;
|
|
SET AUTOCOMMIT=OFF;
|
|
START TRANSACTION;
|
|
INSERT INTO t1 VALUES (1,'node_2');
|
|
connection node_1;
|
|
INSERT INTO t1 VALUES (1,'node_1');
|
|
connection node_2a;
|
|
connection node_2;
|
|
INSERT INTO t1 VALUES (2, 'node_2');
|
|
ERROR 40001: wsrep aborted transaction
|
|
wsrep_local_aborts_increment
|
|
1
|
|
DROP TABLE t1;
|