summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/t/galera_read_only.test
diff options
context:
space:
mode:
authorNirbhay Choubey <nirbhay@mariadb.com>2015-09-21 20:49:31 -0400
committerNirbhay Choubey <nirbhay@mariadb.com>2015-09-21 20:49:31 -0400
commitd54bc3c0d1ed50b3c5aa3a22b2cb653851315e8a (patch)
tree1457106d3944808ed3747920c6cbf518c4c8b5ee /mysql-test/suite/galera/t/galera_read_only.test
parent9d5767cf43e1243e039b20c1853f5b7812587f2d (diff)
downloadmariadb-git-d54bc3c0d1ed50b3c5aa3a22b2cb653851315e8a.tar.gz
Cleanup: remove dead code which could also lead to race.
Diffstat (limited to 'mysql-test/suite/galera/t/galera_read_only.test')
-rw-r--r--mysql-test/suite/galera/t/galera_read_only.test39
1 files changed, 39 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/t/galera_read_only.test b/mysql-test/suite/galera/t/galera_read_only.test
new file mode 100644
index 00000000000..c0fa4af07e0
--- /dev/null
+++ b/mysql-test/suite/galera/t/galera_read_only.test
@@ -0,0 +1,39 @@
+--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;
+
+CREATE USER foo@localhost;
+
+--echo # Open connection to node 2 using 'foo' user.
+--let $port_2= \$NODE_MYPORT_2
+--connect(foo_node_2,127.0.0.1,foo,,test,$port_2,)
+
+--echo
+--echo # Connect with foo_node_2
+--connection foo_node_2
+--error ER_OPTION_PREVENTS_STATEMENT
+INSERT INTO t1 VALUES (2);
+
+--connection node_2
+SELECT COUNT(*) = 1 FROM t1;
+
+# Cleanup
+SET GLOBAL read_only=FALSE;
+DROP TABLE t1;
+DROP USER foo@localhost;
+