summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_gtid.result
blob: 3f5c59608467bd8ea1b95c09e30bf0a80287da6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
connection node_2;
connection node_1;
CREATE TABLE t1 (f1 INT PRIMARY KEY);
INSERT INTO t1 VALUES (1);
connection node_2;
UPDATE t1 SET f1 = 2;
connection node_1;
SET SESSION wsrep_sync_wait = 15;
SELECT * from t1;
f1
2
gtid_binlog_state_equal
1
DROP TABLE t1;