summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/wsrep_debug_basic.test
blob: 50576ff064e4a4c4ea47c147ac264bc9d62e4924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--source include/have_wsrep.inc

--echo #
--echo # wsrep_debug
--echo #

--echo # save the initial value
SET @wsrep_debug_global_saved = @@global.wsrep_debug;

--echo # default
SELECT @@global.wsrep_debug;

--echo
--echo # scope
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
SELECT @@session.wsrep_debug;
SET @@global.wsrep_debug=OFF;
SELECT @@global.wsrep_debug;
SET @@global.wsrep_debug=ON;
SELECT @@global.wsrep_debug;

--echo
--echo # valid values
SET @@global.wsrep_debug='OFF';
SELECT @@global.wsrep_debug;
SET @@global.wsrep_debug=ON;
SELECT @@global.wsrep_debug;
SET @@global.wsrep_debug=default;
SELECT @@global.wsrep_debug;

--echo
--echo # invalid values
--error ER_WRONG_VALUE_FOR_VAR
SET @@global.wsrep_debug=NULL;
--error ER_WRONG_VALUE_FOR_VAR
SET @@global.wsrep_debug='junk';

--echo
--echo # restore the initial value
SET @@global.wsrep_debug = @wsrep_debug_global_saved;

--echo # End of test