mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
b00c536378
BitKeeper/etc/ignore: Added mysql-test/linux_sys_vars.inc mysql-test/load_sysvars.inc mysql-test/windows_sys_vars.inc to the ignore list
17 lines
531 B
Text
17 lines
531 B
Text
'#--------------------FN_DYNVARS_062_01------------------#'
|
|
SELECT @@global.log AS INIT_VALUE;
|
|
INIT_VALUE
|
|
1
|
|
SELECT @@log AS INIT_VALUE;
|
|
INIT_VALUE
|
|
1
|
|
SET @@global.log = ON;
|
|
SET global log = 0;
|
|
'Bug# 34832: log is a system but it is not accessible using SET @@global.log;'
|
|
'SET GLOBAL log; and SELECT @@global.log. SHOW VARIABLES shows the value of log.'
|
|
'#--------------------FN_DYNVARS_062_02-------------------------#'
|
|
SELECT VARIABLE_VALUE
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='log';
|
|
VARIABLE_VALUE
|
|
OFF
|