mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +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/general_log_file_basic.result
Normal file
18
mysql-test/r/general_log_file_basic.result
Normal file
@ -0,0 +1,18 @@
|
||||
SET @start_value = @@global.general_log_file;
|
||||
SELECT @start_value;
|
||||
@start_value
|
||||
test.log
|
||||
'#---------------------FN_DYNVARS_004_01-------------------------#'
|
||||
SET @@global.general_log_file = DEFAULT;
|
||||
SELECT RIGHT(@@global.general_log_file,10) AS log_file;
|
||||
log_file
|
||||
master.log
|
||||
'#--------------------FN_DYNVARS_004_02------------------------#'
|
||||
SET @@global.general_log_file = mytest.log;
|
||||
ERROR 42000: Variable 'general_log_file' can't be set to the value of 'log'
|
||||
'#----------------------FN_DYNVARS_004_03------------------------#'
|
||||
SELECT @@global.general_log_file = VARIABLE_VALUE
|
||||
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
||||
WHERE VARIABLE_NAME='general_log_file';
|
||||
@@global.general_log_file = VARIABLE_VALUE
|
||||
1
|
Reference in New Issue
Block a user