mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
1fc5777320
- Updated slow_query_log_file_basic and general_log_file basis instead of the func version as the func version run good but the basic versions fail. - Sent innodb.test to dev@innodb.com. - variables.test has differences probably due to a bug in mtr or in the SET statement (see bug#39369). - general_log_file_basic.test and slow_query_log_file_bsaic.test have differences, which might be produced by the new mtr (see bug#38124).
17 lines
789 B
Text
17 lines
789 B
Text
SET @start_value = @@global.slow_query_log_file;
|
|
'#---------------------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)
|
|
mysqld-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
|
|
SET @@global.slow_query_log_file= @start_value;
|