summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/debug_sync_basic.result
blob: 6ebb46dd6620a720d691dc7172089fafae1a643c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
select @@global.debug_sync;
ERROR HY000: Variable 'debug_sync' is a SESSION variable
select @@session.debug_sync;
@@session.debug_sync
ON - current signal: ''
show global variables like "debug_sync";
Variable_name	Value
show session variables like "debug_sync";
Variable_name	Value
debug_sync	ON - current signal: ''
select * from information_schema.global_variables where variable_name="debug_sync";
VARIABLE_NAME	VARIABLE_VALUE
select * from information_schema.session_variables where variable_name="debug_sync";
VARIABLE_NAME	VARIABLE_VALUE
DEBUG_SYNC	ON - current signal: ''
set @@session.debug_sync=1;
ERROR 42000: Incorrect argument type to variable 'debug_sync'
set @@session.debug_sync=1.1;
ERROR 42000: Incorrect argument type to variable 'debug_sync'
set @@session.debug_sync=1e1;
ERROR 42000: Incorrect argument type to variable 'debug_sync'