| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/suite/sys_vars/r/ |
Upload File : |
'#---------------------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'