summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/t/galera_read_only.test
blob: 828f35d2ba36ed84b40e18c7bf61aa12725245c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--source include/galera_cluster.inc
--source include/have_innodb.inc

#
# Ensure that the read_only option does not apply to Galera appliers and that replication
# continues, the way MySQL replication would.
#

CREATE TABLE t1 (id INT PRIMARY KEY) ENGINE=InnoDB;

--connection node_2
SET GLOBAL read_only=TRUE;

--connection node_1
INSERT INTO t1 VALUES (1);

--connection node_2
SELECT COUNT(*) = 1 FROM t1;

SET GLOBAL read_only=FALSE;

DROP TABLE t1;