| 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 : |
select @@global.pseudo_thread_id; ERROR HY000: Variable 'pseudo_thread_id' is a SESSION variable select @@session.pseudo_thread_id between 1 and 10000; @@session.pseudo_thread_id between 1 and 10000 1 should be empty show global variables like 'pseudo_thread_id'; Variable_name Value show session variables like 'pseudo_thread_id'; Variable_name Value pseudo_thread_id # should be empty select * from information_schema.global_variables where variable_name='pseudo_thread_id'; VARIABLE_NAME VARIABLE_VALUE select @@session.pseudo_thread_id = variable_value from information_schema.session_variables where variable_name='pseudo_thread_id'; @@session.pseudo_thread_id = variable_value 1 set session pseudo_thread_id=42; select @@session.pseudo_thread_id; @@session.pseudo_thread_id 42 select * from information_schema.global_variables where variable_name='pseudo_thread_id'; VARIABLE_NAME VARIABLE_VALUE select variable_value from information_schema.session_variables where variable_name='pseudo_thread_id'; variable_value 42 set global pseudo_thread_id=1; ERROR HY000: Variable 'pseudo_thread_id' is a SESSION variable and can't be used with SET GLOBAL set session pseudo_thread_id=1.1; ERROR 42000: Incorrect argument type to variable 'pseudo_thread_id' set session pseudo_thread_id=1e1; ERROR 42000: Incorrect argument type to variable 'pseudo_thread_id' set session pseudo_thread_id="foo"; ERROR 42000: Incorrect argument type to variable 'pseudo_thread_id'