blob: ec906ccd8a2ba9080a87396b4b184cadba225dc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# MDEV-7798: mysql.server init script can't stop mysqld when WSREP is
# turned off
#
SELECT @@GLOBAL.WSREP_ON;
@@GLOBAL.WSREP_ON
1
SET GLOBAL WSREP_ON= 0;
Restart the node.
# restart
SELECT @@GLOBAL.WSREP_ON;
@@GLOBAL.WSREP_ON
1
# End of test.
|