mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
7ce32c91ba
the local tree contains a fix for Bug#32748 "Inconsistent handling of assignments to general_log_file/slow_query_log_file", which changes output of a number of tests. mysql-test/r/general_log_file_basic.result: Update results (Bug#32748) mysql-test/r/log_output_basic.result: Update the test with results of the fix for Bug#32748 mysql-test/r/slow_query_log_file_basic.result: Update the test with results of the fix for Bug#32748 mysql-test/t/general_log_file_basic.test: Adjust to take into account the fix for Bug#32748 (a port from 6.0-bugteam) mysql-test/t/log_output_basic.test: Adjust to take into account the fix for Bug#32748 (a port from 6.0-bugteam) mysql-test/t/slow_query_log_file_basic.test: Adjust to take into account the fix for Bug#32748 (a port from 6.0-bugteam) tests/mysql_client_test.c: Fix a compilation warning.
19 lines
788 B
Text
19 lines
788 B
Text
SET @start_value = @@global.slow_query_log_file;
|
|
SELECT @start_value;
|
|
@start_value
|
|
slowtest.log
|
|
'#---------------------FN_DYNVARS_004_01-------------------------#'
|
|
SET @@global.slow_query_log_file = DEFAULT;
|
|
SELECT RIGHT(@@global.slow_query_log_file,15);
|
|
RIGHT(@@global.slow_query_log_file,15)
|
|
master-slow.log
|
|
'#--------------------FN_DYNVARS_004_02------------------------#'
|
|
SET @@global.slow_query_log_file = mytest.log;
|
|
SET @@global.slow_query_log_file = 12;
|
|
ERROR 42000: Incorrect argument type to variable 'slow_query_log_file'
|
|
'#----------------------FN_DYNVARS_004_03------------------------#'
|
|
SELECT @@global.slow_query_log_file = VARIABLE_VALUE
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='slow_query_log_file';
|
|
@@global.slow_query_log_file = VARIABLE_VALUE
|
|
1
|