summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/galera_sr/t/mysql-wsrep-features#14.test
blob: deeb890fa0bbdc2dd75c2be6f4680b90402d92b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--source include/galera_cluster.inc
--source include/have_innodb.inc

--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
--source include/galera_wait_ready.inc