mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
23 lines
614 B
Plaintext
23 lines
614 B
Plaintext
#
|
|
# wsrep_recover
|
|
#
|
|
# default
|
|
SELECT @@global.wsrep_recover;
|
|
@@global.wsrep_recover
|
|
0
|
|
SELECT @@session.wsrep_recover;
|
|
ERROR HY000: Variable 'wsrep_recover' is a GLOBAL variable
|
|
|
|
# scope and valid values
|
|
SET @@global.wsrep_recover=OFF;
|
|
ERROR HY000: Variable 'wsrep_recover' is a read only variable
|
|
SET @@global.wsrep_recover=ON;
|
|
ERROR HY000: Variable 'wsrep_recover' is a read only variable
|
|
|
|
# invalid values
|
|
SET @@global.wsrep_recover=NULL;
|
|
ERROR HY000: Variable 'wsrep_recover' is a read only variable
|
|
SET @@global.wsrep_recover='junk';
|
|
ERROR HY000: Variable 'wsrep_recover' is a read only variable
|
|
# End of test
|