mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
Merge 5.1->5.1-rpl
Fix paths and name of a few files to make it work with new mtr.pl
This commit is contained in:
19
mysql-test/r/slow_query_log_file_basic.result
Normal file
19
mysql-test/r/slow_query_log_file_basic.result
Normal file
@@ -0,0 +1,19 @@
|
||||
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)
|
||||
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
|
Reference in New Issue
Block a user