1
0
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:
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

@ -1,3 +1,8 @@
#
# 2010-01-20 OBN - Added check for variable value matching I_S tables
#
SET @start_global_value = @@global.lc_messages;
SELECT @start_global_value;
@ -19,9 +24,11 @@ select @@global.lc_messages;
set session lc_messages=2;
select @@session.lc_messages;
set global lc_messages="en_US";
select @@global.lc_messages;
set session lc_messages="en_GB";
select @@global.lc_messages;
select @@session.lc_messages;
select * from information_schema.global_variables where variable_name='lc_messages';
select * from information_schema.session_variables where variable_name='lc_messages';
#
# incorrect types