1#
2# wsrep_recover
3#
4# default
5SELECT @@global.wsrep_recover;
6@@global.wsrep_recover
70
8SELECT @@session.wsrep_recover;
9ERROR HY000: Variable 'wsrep_recover' is a GLOBAL variable
10
11# scope and valid values
12SET @@global.wsrep_recover=OFF;
13ERROR HY000: Variable 'wsrep_recover' is a read only variable
14SET @@global.wsrep_recover=ON;
15ERROR HY000: Variable 'wsrep_recover' is a read only variable
16
17# invalid values
18SET @@global.wsrep_recover=NULL;
19ERROR HY000: Variable 'wsrep_recover' is a read only variable
20SET @@global.wsrep_recover='junk';
21ERROR HY000: Variable 'wsrep_recover' is a read only variable
22# End of test
23