mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests.
This commit is contained in:
106
mysql-test/suite/sys_vars/r/sql_log_bin_basic.result
Normal file
106
mysql-test/suite/sys_vars/r/sql_log_bin_basic.result
Normal file
@ -0,0 +1,106 @@
|
||||
SET @session_start_value = @@session.sql_log_bin;
|
||||
SELECT @session_start_value;
|
||||
@session_start_value
|
||||
1
|
||||
'#--------------------FN_DYNVARS_156_01------------------------#'
|
||||
SET @@session.sql_log_bin = 0;
|
||||
SET @@session.sql_log_bin = DEFAULT;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
0
|
||||
SET @@session.sql_log_bin = 1;
|
||||
SET @@session.sql_log_bin = DEFAULT;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
1
|
||||
'#---------------------FN_DYNVARS_156_02-------------------------#'
|
||||
SET sql_log_bin = 1;
|
||||
SELECT @@sql_log_bin;
|
||||
@@sql_log_bin
|
||||
1
|
||||
SELECT session.sql_log_bin;
|
||||
ERROR 42S02: Unknown table 'session' in field list
|
||||
SELECT local.sql_log_bin;
|
||||
ERROR 42S02: Unknown table 'local' in field list
|
||||
SET session sql_log_bin = 0;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
0
|
||||
'#--------------------FN_DYNVARS_156_03------------------------#'
|
||||
SET @@session.sql_log_bin = 0;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
0
|
||||
SET @@session.sql_log_bin = 1;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
1
|
||||
'#--------------------FN_DYNVARS_156_04-------------------------#'
|
||||
SET @@session.sql_log_bin = -1;
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of '-1'
|
||||
SET @@session.sql_log_bin = 2;
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of '2'
|
||||
SET @@session.sql_log_bin = "T";
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of 'T'
|
||||
SET @@session.sql_log_bin = "Y";
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of 'Y'
|
||||
SET @@session.sql_log_bin = TR<54>E;
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of 'TRÜE'
|
||||
SET @@session.sql_log_bin = <20>N;
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of 'ÕN'
|
||||
SET @@session.sql_log_bin = OF;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
0
|
||||
'Bug# 34828: OF is taken as OFF and a value of 0 is set.'
|
||||
SET @@session.sql_log_bin = <20>FF;
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of 'ÓFF'
|
||||
SET @@session.sql_log_bin = '<27>';
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of '<27>'
|
||||
SET @@session.sql_log_bin = NO;
|
||||
ERROR 42000: Variable 'sql_log_bin' can't be set to the value of 'NO'
|
||||
'#-------------------FN_DYNVARS_156_05----------------------------#'
|
||||
SET @@global.sql_log_bin = 0;
|
||||
ERROR HY000: Variable 'sql_log_bin' is a SESSION variable and can't be used with SET GLOBAL
|
||||
SELECT @@global.sql_log_bin;
|
||||
ERROR HY000: Variable 'sql_log_bin' is a SESSION variable
|
||||
'#----------------------FN_DYNVARS_156_06------------------------#'
|
||||
SELECT count(VARIABLE_VALUE) FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES WHERE VARIABLE_NAME='sql_log_bin';
|
||||
count(VARIABLE_VALUE)
|
||||
1
|
||||
'#----------------------FN_DYNVARS_156_07------------------------#'
|
||||
SELECT @@session.sql_log_bin = VARIABLE_VALUE
|
||||
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
||||
WHERE VARIABLE_NAME='sql_log_bin';
|
||||
@@session.sql_log_bin = VARIABLE_VALUE
|
||||
1
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
0
|
||||
SELECT VARIABLE_VALUE
|
||||
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
||||
WHERE VARIABLE_NAME='sql_log_bin';
|
||||
VARIABLE_VALUE
|
||||
OFF
|
||||
'#---------------------FN_DYNVARS_156_08-------------------------#'
|
||||
SET @@session.sql_log_bin = OFF;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
0
|
||||
SET @@session.sql_log_bin = ON;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
1
|
||||
'#---------------------FN_DYNVARS_156_09----------------------#'
|
||||
SET @@session.sql_log_bin = TRUE;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
1
|
||||
SET @@session.sql_log_bin = FALSE;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
0
|
||||
SET @@session.sql_log_bin = @session_start_value;
|
||||
SELECT @@session.sql_log_bin;
|
||||
@@session.sql_log_bin
|
||||
1
|
Reference in New Issue
Block a user