mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
31 lines
706 B
Plaintext
31 lines
706 B
Plaintext
#
|
|
# Simple test for the operation on the wsrep-mysql-replication-bundle
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
--source include/have_innodb.inc
|
|
|
|
--let $wsrep_mysql_replication_bundle_orig = `SELECT @@wsrep_mysql_replication_bundle`
|
|
|
|
CREATE TABLE t1 (f1 INT PRIMARY KEY) Engine=InnoDB;
|
|
|
|
SET GLOBAL wsrep_mysql_replication_bundle = 2;
|
|
|
|
--connection node_1
|
|
# This statement will not be replicated immediately
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 0 FROM t1;
|
|
|
|
--connection node_1
|
|
INSERT INTO t1 VALUES (2);
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 2 FROM t1;
|
|
|
|
--connection node_1
|
|
--eval SET GLOBAL wsrep_mysql_replication_bundle = $wsrep_mysql_replication_bundle_orig
|
|
|
|
DROP TABLE t1;
|