Commit 66f1469a authored by Omer BarNir's avatar Omer BarNir

Corrections to pseudi_thread_id_basic test (WL4738)

parent fe557b7b
...@@ -3,9 +3,6 @@ ERROR HY000: Variable 'pseudo_thread_id' is a SESSION variable ...@@ -3,9 +3,6 @@ ERROR HY000: Variable 'pseudo_thread_id' is a SESSION variable
select @@session.pseudo_thread_id between 1 and 10000; select @@session.pseudo_thread_id between 1 and 10000;
@@session.pseudo_thread_id between 1 and 10000 @@session.pseudo_thread_id between 1 and 10000
1 1
select @@session.pseudo_thread_id;
@@session.pseudo_thread_id
2
should be empty should be empty
show global variables like 'pseudo_thread_id'; show global variables like 'pseudo_thread_id';
Variable_name Value Variable_name Value
......
...@@ -11,7 +11,6 @@ select @@global.pseudo_thread_id; ...@@ -11,7 +11,6 @@ select @@global.pseudo_thread_id;
# Check the variable has a valid numeric value (assumed to be less then 10000) # Check the variable has a valid numeric value (assumed to be less then 10000)
select @@session.pseudo_thread_id between 1 and 10000; select @@session.pseudo_thread_id between 1 and 10000;
select @@session.pseudo_thread_id;
--echo should be empty --echo should be empty
show global variables like 'pseudo_thread_id'; show global variables like 'pseudo_thread_id';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment