Post-push fixup for WL#5349
InnoDB came in a new version "simultanously" with the commit. This patch is a minor change to the new innodb regression test suite.
This commit is contained in:
parent
105b4c38d0
commit
eda2ff8103
@ -0,0 +1,3 @@
|
||||
--default-storage-engine=MyISAM
|
||||
--innodb-strict-mode=0
|
||||
--innodb-file-per-table=0
|
3
mysql-test/suite/innodb/t/innodb-autoinc-master.opt
Normal file
3
mysql-test/suite/innodb/t/innodb-autoinc-master.opt
Normal file
@ -0,0 +1,3 @@
|
||||
--default-storage-engine=MyISAM
|
||||
--innodb-strict-mode=0
|
||||
--innodb-file-per-table=0
|
@ -1 +1,4 @@
|
||||
--binlog_cache_size=32768 --innodb_lock_wait_timeout=1
|
||||
--default-storage-engine=MyISAM
|
||||
--innodb-strict-mode=0
|
||||
--innodb-file-per-table=0
|
||||
|
@ -0,0 +1,3 @@
|
||||
--default-storage-engine=MyISAM
|
||||
--innodb-strict-mode=0
|
||||
--innodb-file-per-table=0
|
1
mysql-test/suite/rpl/t/rpl_invoked_features-master.opt
Normal file
1
mysql-test/suite/rpl/t/rpl_invoked_features-master.opt
Normal file
@ -0,0 +1 @@
|
||||
--default-storage-engine=MyISAM
|
1
mysql-test/suite/rpl/t/rpl_mixed_row_innodb-master.opt
Normal file
1
mysql-test/suite/rpl/t/rpl_mixed_row_innodb-master.opt
Normal file
@ -0,0 +1 @@
|
||||
--default-storage-engine=MyISAM
|
@ -1 +1,2 @@
|
||||
--skip-external-locking
|
||||
--default-storage-engine=MyISAM
|
||||
|
2
mysql-test/suite/rpl/t/rpl_sync-master.opt
Normal file
2
mysql-test/suite/rpl/t/rpl_sync-master.opt
Normal file
@ -0,0 +1,2 @@
|
||||
--default-storage-engine=MyISAM
|
||||
--innodb-file-per-table=0
|
@ -1 +1 @@
|
||||
--sync-relay-log-info=1 --relay-log-recovery=1 --innodb_file_format_check='ON'
|
||||
--sync-relay-log-info=1 --relay-log-recovery=1 --innodb_file_format_check='ON' --default-storage-engine=MyISAM --innodb-file-per-table=0
|
||||
|
1
mysql-test/suite/rpl/t/rpl_temp_temporary-master.opt
Normal file
1
mysql-test/suite/rpl/t/rpl_temp_temporary-master.opt
Normal file
@ -0,0 +1 @@
|
||||
--default-storage-engine=MyISAM
|
@ -1,28 +1,28 @@
|
||||
SET @start_global_value = @@global.innodb_file_format;
|
||||
SELECT @start_global_value;
|
||||
@start_global_value
|
||||
Antelope
|
||||
Barracuda
|
||||
Valid values are 'Antelope' and 'Barracuda'
|
||||
select @@global.innodb_file_format in ('Antelope', 'Barracuda');
|
||||
@@global.innodb_file_format in ('Antelope', 'Barracuda')
|
||||
1
|
||||
select @@global.innodb_file_format;
|
||||
@@global.innodb_file_format
|
||||
Antelope
|
||||
Barracuda
|
||||
select @@session.innodb_file_format;
|
||||
ERROR HY000: Variable 'innodb_file_format' is a GLOBAL variable
|
||||
show global variables like 'innodb_file_format';
|
||||
Variable_name Value
|
||||
innodb_file_format Antelope
|
||||
innodb_file_format Barracuda
|
||||
show session variables like 'innodb_file_format';
|
||||
Variable_name Value
|
||||
innodb_file_format Antelope
|
||||
innodb_file_format Barracuda
|
||||
select * from information_schema.global_variables where variable_name='innodb_file_format';
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
INNODB_FILE_FORMAT Antelope
|
||||
INNODB_FILE_FORMAT Barracuda
|
||||
select * from information_schema.session_variables where variable_name='innodb_file_format';
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
INNODB_FILE_FORMAT Antelope
|
||||
INNODB_FILE_FORMAT Barracuda
|
||||
set global innodb_file_format='Antelope';
|
||||
select @@global.innodb_file_format;
|
||||
@@global.innodb_file_format
|
||||
@ -56,4 +56,4 @@ ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'Salmon'
|
||||
SET @@global.innodb_file_format = @start_global_value;
|
||||
SELECT @@global.innodb_file_format;
|
||||
@@global.innodb_file_format
|
||||
Antelope
|
||||
Barracuda
|
||||
|
@ -1,32 +1,32 @@
|
||||
SET @start_global_value = @@global.innodb_strict_mode;
|
||||
SELECT @start_global_value;
|
||||
@start_global_value
|
||||
0
|
||||
1
|
||||
Valid values are 'ON' and 'OFF'
|
||||
select @@global.innodb_strict_mode in (0, 1);
|
||||
@@global.innodb_strict_mode in (0, 1)
|
||||
1
|
||||
select @@global.innodb_strict_mode;
|
||||
@@global.innodb_strict_mode
|
||||
0
|
||||
1
|
||||
select @@session.innodb_strict_mode in (0, 1);
|
||||
@@session.innodb_strict_mode in (0, 1)
|
||||
1
|
||||
select @@session.innodb_strict_mode;
|
||||
@@session.innodb_strict_mode
|
||||
0
|
||||
1
|
||||
show global variables like 'innodb_strict_mode';
|
||||
Variable_name Value
|
||||
innodb_strict_mode OFF
|
||||
innodb_strict_mode ON
|
||||
show session variables like 'innodb_strict_mode';
|
||||
Variable_name Value
|
||||
innodb_strict_mode OFF
|
||||
innodb_strict_mode ON
|
||||
select * from information_schema.global_variables where variable_name='innodb_strict_mode';
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
INNODB_STRICT_MODE OFF
|
||||
INNODB_STRICT_MODE ON
|
||||
select * from information_schema.session_variables where variable_name='innodb_strict_mode';
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
INNODB_STRICT_MODE OFF
|
||||
INNODB_STRICT_MODE ON
|
||||
set global innodb_strict_mode='OFF';
|
||||
set session innodb_strict_mode='OFF';
|
||||
select @@global.innodb_strict_mode;
|
||||
@ -117,4 +117,4 @@ INNODB_STRICT_MODE ON
|
||||
SET @@global.innodb_strict_mode = @start_global_value;
|
||||
SELECT @@global.innodb_strict_mode;
|
||||
@@global.innodb_strict_mode
|
||||
0
|
||||
1
|
||||
|
@ -1,22 +1,22 @@
|
||||
SET @start_global_value = @@global.storage_engine;
|
||||
SELECT @start_global_value;
|
||||
@start_global_value
|
||||
MyISAM
|
||||
InnoDB
|
||||
SET @start_session_value = @@session.storage_engine;
|
||||
SELECT @start_session_value;
|
||||
@start_session_value
|
||||
MyISAM
|
||||
InnoDB
|
||||
'#--------------------FN_DYNVARS_005_01-------------------------#'
|
||||
SET @@global.storage_engine = INNODB;
|
||||
SET @@global.storage_engine = DEFAULT;
|
||||
SELECT @@global.storage_engine;
|
||||
@@global.storage_engine
|
||||
MyISAM
|
||||
InnoDB
|
||||
SET @@session.storage_engine = INNODB;
|
||||
SET @@session.storage_engine = DEFAULT;
|
||||
SELECT @@session.storage_engine;
|
||||
@@session.storage_engine
|
||||
MyISAM
|
||||
InnoDB
|
||||
'#--------------------FN_DYNVARS_005_02-------------------------#'
|
||||
SET @@global.storage_engine = MYISAM;
|
||||
SELECT @@global.storage_engine;
|
||||
@ -110,8 +110,8 @@ SET @@storage_engine = @start_global_value;
|
||||
SET @@global.storage_engine = @start_global_value;
|
||||
SELECT @@global.storage_engine;
|
||||
@@global.storage_engine
|
||||
MyISAM
|
||||
InnoDB
|
||||
SET @@session.storage_engine = @start_session_value;
|
||||
SELECT @@session.storage_engine;
|
||||
@@session.storage_engine
|
||||
MyISAM
|
||||
InnoDB
|
||||
|
@ -1,2 +1,3 @@
|
||||
--skip-stack-trace --skip-core-file
|
||||
|
||||
--default-storage-engine=MyISAM
|
||||
--innodb-file-per-table=0
|
||||
|
1
mysql-test/t/lock_sync-master.opt
Normal file
1
mysql-test/t/lock_sync-master.opt
Normal file
@ -0,0 +1 @@
|
||||
--default-storage-engine=MyISAM
|
Loading…
x
Reference in New Issue
Block a user