1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-11 05:52:26 +03:00
Files
mariadb/mysql-test/suite/galera_sr/r/mdev_18631.result
2024-11-06 04:59:10 +01:00

23 lines
384 B
Plaintext

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;