1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00
Files
mariadb/mysql-test/suite/galera/r/galera_var_mysql_replication_bundle.result
Brave Galera Crew 36a2a185fe Galera4
2019-01-23 15:30:00 +04:00

20 lines
436 B
Plaintext

connection node_2;
connection node_1;
CREATE TABLE t1 (f1 INT PRIMARY KEY) Engine=InnoDB;
SET GLOBAL wsrep_mysql_replication_bundle = 2;
connection node_1;
INSERT INTO t1 VALUES (1);
connection node_2;
SELECT COUNT(*) = 0 FROM t1;
COUNT(*) = 0
0
connection node_1;
INSERT INTO t1 VALUES (2);
connection node_2;
SELECT COUNT(*) = 2 FROM t1;
COUNT(*) = 2
1
connection node_1;
SET GLOBAL wsrep_mysql_replication_bundle = 0;
DROP TABLE t1;