1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +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:
Omer BarNir
2010-01-28 22:33:00 -08:00
parent 53f72bf3df
commit c4f58dcbe5
94 changed files with 3462 additions and 165 deletions

View File

@@ -2,21 +2,37 @@
#
# exists as a session only
#
# 2010-01-20 OBN - Added check for session I_S values being equal to variable value
# - Added check for session variable value being numberic
#
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@global.pseudo_thread_id;
select @@session.pseudo_thread_id=0;
# Check the variable has a valid numeric value (assumed to be less then 10000)
select @@session.pseudo_thread_id between 1 and 1000;
--echo should be empty
show global variables like 'pseudo_thread_id';
# Check that shows returns a value (can't confirm the actual one)
--replace_column 2 #
show session variables like 'pseudo_thread_id';
# Global I_S variable is empty
--echo should be empty
select * from information_schema.global_variables where variable_name='pseudo_thread_id';
--replace_column 2 #
select * from information_schema.session_variables where variable_name='pseudo_thread_id';
# Check that I_S value is same as variable
select @@session.pseudo_thread_id = variable_value from information_schema.session_variables where variable_name='pseudo_thread_id';
#
# show that it's writable
#
set session pseudo_thread_id=1;
set session pseudo_thread_id=42;
select @@session.pseudo_thread_id;
select * from information_schema.global_variables where variable_name='pseudo_thread_id';
select variable_value from information_schema.session_variables where variable_name='pseudo_thread_id';
--error ER_LOCAL_VARIABLE
set global pseudo_thread_id=1;