mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
System variable tests delivered by Folio3 (see WL4288).
BitKeeper/etc/ignore: Added mysql-test/linux_sys_vars.inc mysql-test/load_sysvars.inc mysql-test/windows_sys_vars.inc to the ignore list
This commit is contained in:
18
mysql-test/r/slow_query_log_file_basic.result
Normal file
18
mysql-test/r/slow_query_log_file_basic.result
Normal file
@ -0,0 +1,18 @@
|
||||
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;
|
||||
ERROR 42000: Variable 'slow_query_log_file' can't be set to the value of 'log'
|
||||
'#----------------------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