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,3 +1,8 @@
|
||||
|
||||
#
|
||||
# 2010-01-20 OBN - added check of I_S values after variable value changed
|
||||
#
|
||||
|
||||
SET @start_global_value = @@global.old_alter_table;
|
||||
SELECT @start_global_value;
|
||||
|
||||
@ -15,9 +20,13 @@ select * from information_schema.session_variables where variable_name='old_alte
|
||||
# show that it's writable
|
||||
#
|
||||
set global old_alter_table=1;
|
||||
select @@global.old_alter_table;
|
||||
set session old_alter_table=ON;
|
||||
select @@global.old_alter_table;
|
||||
select @@session.old_alter_table;
|
||||
show global variables like 'old_alter_table';
|
||||
show session variables like 'old_alter_table';
|
||||
select * from information_schema.global_variables where variable_name='old_alter_table';
|
||||
select * from information_schema.session_variables where variable_name='old_alter_table';
|
||||
|
||||
#
|
||||
# incorrect types
|
||||
|
Reference in New Issue
Block a user