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
75 lines
1.9 KiB
Text
75 lines
1.9 KiB
Text
'#---------------------BS_STVARS_002_01----------------------#'
|
|
SELECT COUNT(@@GLOBAL.binlog_format);
|
|
COUNT(@@GLOBAL.binlog_format)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@SESSION.binlog_format);
|
|
COUNT(@@SESSION.binlog_format)
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_002_02----------------------#'
|
|
SET @@GLOBAL.binlog_format=1;
|
|
Expected error 'Read only variable'
|
|
Bug: Writeable static variable
|
|
SELECT COUNT(@@GLOBAL.binlog_format);
|
|
COUNT(@@GLOBAL.binlog_format)
|
|
1
|
|
1 Expected
|
|
SET @@SESSION.binlog_format=1;
|
|
Expected error 'Read only variable'
|
|
Bug: Writeable static variable
|
|
SELECT COUNT(@@SESSION.binlog_format);
|
|
COUNT(@@SESSION.binlog_format)
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_002_03----------------------#'
|
|
SELECT @@GLOBAL.binlog_format = VARIABLE_VALUE
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='binlog_format';
|
|
@@GLOBAL.binlog_format = VARIABLE_VALUE
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@GLOBAL.binlog_format);
|
|
COUNT(@@GLOBAL.binlog_format)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(VARIABLE_VALUE)
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='binlog_format';
|
|
COUNT(VARIABLE_VALUE)
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_002_04----------------------#'
|
|
SELECT @@SESSION.binlog_format = VARIABLE_VALUE
|
|
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
|
WHERE VARIABLE_NAME='binlog_format';
|
|
@@SESSION.binlog_format = VARIABLE_VALUE
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@SESSION.binlog_format);
|
|
COUNT(@@SESSION.binlog_format)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(VARIABLE_VALUE)
|
|
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
|
WHERE VARIABLE_NAME='binlog_format';
|
|
COUNT(VARIABLE_VALUE)
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_002_05----------------------#'
|
|
SELECT COUNT(@@binlog_format);
|
|
COUNT(@@binlog_format)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@local.binlog_format);
|
|
COUNT(@@local.binlog_format)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@SESSION.binlog_format);
|
|
COUNT(@@SESSION.binlog_format)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@GLOBAL.binlog_format);
|
|
COUNT(@@GLOBAL.binlog_format)
|
|
1
|
|
1 Expected
|