mirror of
https://github.com/MariaDB/server.git
synced 2025-02-05 13:22:17 +01:00
22 lines
384 B
Text
22 lines
384 B
Text
connection node_2;
|
|
connection node_1;
|
|
# On node_1
|
|
connection node_1;
|
|
CREATE TABLE t1(f1 INT PRIMARY KEY) ENGINE=INNODB;
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
connection node_2;
|
|
call mtr.add_suppression("WSREP: Ignoring server id .* for non bootstrap node");
|
|
SELECT * FROM t1;
|
|
f1
|
|
1
|
|
2
|
|
3
|
|
connection node_1;
|
|
SELECT * FROM t1;
|
|
f1
|
|
1
|
|
2
|
|
3
|
|
DROP TABLE t1;
|
|
disconnect node_2;
|
|
disconnect node_1;
|