mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
6f78ef71d4
WL#5154 and WL5182 Two result files in the sys_vars suite wasn't properly updated after the change in deprecation text
23 lines
803 B
Text
23 lines
803 B
Text
'#--------------------FN_DYNVARS_062_01------------------#'
|
|
SET @start_log= @@global.log;
|
|
SELECT @@global.log AS INIT_VALUE;
|
|
INIT_VALUE
|
|
1
|
|
SELECT @@log AS INIT_VALUE;
|
|
INIT_VALUE
|
|
1
|
|
SET @@global.log = ON;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@log' is deprecated and will be removed in MySQL 7.0. Please use '@@general_log' instead
|
|
SET global log = 0;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@log' is deprecated and will be removed in MySQL 7.0. Please use '@@general_log' instead
|
|
'#--------------------FN_DYNVARS_062_02-------------------------#'
|
|
SELECT VARIABLE_VALUE
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='log';
|
|
VARIABLE_VALUE
|
|
OFF
|
|
SET @@global.log= @start_log;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@log' is deprecated and will be removed in MySQL 7.0. Please use '@@general_log' instead
|