mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
b00c536378
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
18 lines
706 B
Text
18 lines
706 B
Text
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
|