mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
22 lines
532 B
Text
22 lines
532 B
Text
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
SET SESSION wsrep_sync_wait = 0;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
|
FLUSH TABLE t1 WITH READ LOCK;
|
|
connection node_2;
|
|
INSERT INTO t1 VALUES (1);
|
|
INSERT INTO t1 VALUES (2);
|
|
connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1;
|
|
connection node_1a;
|
|
SET SESSION wsrep_sync_wait = 0;
|
|
SELECT COUNT(*) = 0 FROM t1;
|
|
COUNT(*) = 0
|
|
1
|
|
connection node_1;
|
|
UNLOCK TABLES;
|
|
SET SESSION wsrep_sync_wait = 15;
|
|
SELECT COUNT(*) = 2 FROM t1;
|
|
COUNT(*) = 2
|
|
1
|
|
DROP TABLE t1;
|