mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Modified and added tests following review of WL#4738.
- Added tests for innodb and semisync plugin - Modified existing tests to include variable values in I_S tables - Updated the all_vars test to include optional checkes for INNODB and semisync plugin if loaded
This commit is contained in:
@ -1,22 +1,29 @@
|
||||
select @@global.pseudo_thread_id;
|
||||
ERROR HY000: Variable 'pseudo_thread_id' is a SESSION variable
|
||||
select @@session.pseudo_thread_id=0;
|
||||
@@session.pseudo_thread_id=0
|
||||
0
|
||||
select @@session.pseudo_thread_id between 1 and 1000;
|
||||
@@session.pseudo_thread_id between 1 and 1000
|
||||
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 * from information_schema.session_variables where variable_name='pseudo_thread_id';
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
PSEUDO_THREAD_ID #
|
||||
set session pseudo_thread_id=1;
|
||||
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
|
||||
1
|
||||
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;
|
||||
|
Reference in New Issue
Block a user