Comment 5 for bug 1039121

Revision history for this message
Nilnandan Joshi (nilnandan-joshi) wrote :

With SET GLOBAL ,it works.

mysql> show global variables like 'wsrep_on';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| wsrep_on | ON |
+---------------+-------+
1 row in set (0.00 sec)

mysql> SET GLOBAL wsrep_on = OFF;
Query OK, 0 rows affected (0.00 sec)

mysql> show global variables like 'wsrep_on';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| wsrep_on | OFF |
+---------------+-------+
1 row in set (0.00 sec)

Even I have tested, it will not replicate.