summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera_sr/r/mysql-wsrep-features#14.result
blob: b09c7d4047a38344915c13a941b5f699f85625da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
connection node_2;
connection node_1;
connection node_1;
CREATE TABLE t1 (id INT PRIMARY KEY) ENGINE=InnoDB;
SET SESSION wsrep_trx_fragment_size = 1;
SET AUTOCOMMIT=OFF;
START TRANSACTION;
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
COMMIT;
DROP TABLE t1;
connection node_2;