summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera_sr/r/mysql-wsrep-features#138.result
blob: fc9afd6e1e0eaa3fa8101f0161e324c4048ea5d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
connection node_2;
connection node_1;
connection node_1;
SET SESSION wsrep_trx_fragment_size = 1;
SET AUTOCOMMIT=OFF;
START TRANSACTION;
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1),(2);
connection node_2;
SELECT flags FROM mysql.wsrep_streaming_log;
flags
1
0
connection node_1;
ROLLBACK;
INSERT INTO t1 VALUES (3),(4);
connection node_2;
SELECT flags FROM mysql.wsrep_streaming_log;
flags
1
0
connection node_1;
ROLLBACK;
DROP TABLE t1;