1
0
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:
Horst Hunger
2008-12-19 16:03:32 +01:00
parent ba816c14a9
commit 357b500940
520 changed files with 30 additions and 51 deletions

View File

@ -0,0 +1,55 @@
'#---------------------BS_STVARS_051_01----------------------#'
SELECT COUNT(@@GLOBAL.thread_handling);
COUNT(@@GLOBAL.thread_handling)
1
1 Expected
'#---------------------BS_STVARS_051_02----------------------#'
SET @@GLOBAL.thread_handling=1;
ERROR HY000: Variable 'thread_handling' is a read only variable
Expected error ER_INCORRECT_GLOBAL_LOCAL_VAR
SELECT COUNT(@@GLOBAL.thread_handling);
COUNT(@@GLOBAL.thread_handling)
1
1 Expected
'#---------------------BS_STVARS_051_03----------------------#'
SELECT @@GLOBAL.thread_handling = VARIABLE_VALUE
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME='thread_handling';
@@GLOBAL.thread_handling = VARIABLE_VALUE
1
1 Expected
SELECT COUNT(@@GLOBAL.thread_handling);
COUNT(@@GLOBAL.thread_handling)
1
1 Expected
SELECT COUNT(VARIABLE_VALUE)
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME='thread_handling';
COUNT(VARIABLE_VALUE)
1
1 Expected
'#---------------------BS_STVARS_051_04----------------------#'
SELECT @@thread_handling = @@GLOBAL.thread_handling;
@@thread_handling = @@GLOBAL.thread_handling
1
1 Expected
'#---------------------BS_STVARS_051_05----------------------#'
SELECT COUNT(@@thread_handling);
COUNT(@@thread_handling)
1
1 Expected
SELECT COUNT(@@local.thread_handling);
ERROR HY000: Variable 'thread_handling' is a GLOBAL variable
Bug:Variable is global so it can not be accessed by local there should be error ER_INCORRECT_GLOBAL_LOCAL_VAR
Expected error 'Variable is a GLOBAL variable'
SELECT COUNT(@@SESSION.thread_handling);
ERROR HY000: Variable 'thread_handling' is a GLOBAL variable
Bug:Variable is global so it can not be accessed by session there should be error ER_INCORRECT_GLOBAL_LOCAL_VAR
Expected error 'Variable is a GLOBAL variable'
SELECT COUNT(@@GLOBAL.thread_handling);
COUNT(@@GLOBAL.thread_handling)
1
1 Expected
SELECT thread_handling = @@SESSION.thread_handling;
ERROR 42S22: Unknown column 'thread_handling' in 'field list'
Expected error 'Readonly variable'