mirror of
https://github.com/MariaDB/server.git
synced 2025-08-09 22:24:09 +03:00
* rename all debugging related command-line options and variables to start from "debug-", and made them all OFF by default. * replace "MySQL" with "MariaDB" in error messages * "Cast ... converted ... integer to it's ... complement" is now a note, not a warning * @@query_cache_strip_comments now has a session scope, not global.
24 lines
809 B
Plaintext
24 lines
809 B
Plaintext
'#--------------------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 MariaDB 7.0. Please use '@@general_log' instead
|
|
SET global log = 0;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@log' is deprecated and will be removed in MariaDB 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 MariaDB 7.0. Please use '@@general_log' instead
|