2012-02-23 07:50:11 +01:00
|
|
|
#
|
|
|
|
# suite.pm will make sure that all tests including this file
|
2017-06-21 12:44:16 +02:00
|
|
|
# will be skipped unless innodb is enabled
|
2012-02-23 07:50:11 +01:00
|
|
|
#
|
2022-03-23 15:42:43 +01:00
|
|
|
--disable_query_log
|
2023-08-31 11:08:40 +02:00
|
|
|
if (`select count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value like 'MSAN%'`)
|
2022-03-23 15:42:43 +01:00
|
|
|
{
|
2022-03-24 12:43:58 +01:00
|
|
|
SET STATEMENT sql_log_bin=0 FOR
|
2022-03-23 15:42:43 +01:00
|
|
|
call mtr.add_suppression("InnoDB: Trying to delete tablespace.*pending operations");
|
|
|
|
}
|
|
|
|
if ($VALGRIND_TEST)
|
|
|
|
{
|
2022-03-24 12:43:58 +01:00
|
|
|
SET STATEMENT sql_log_bin=0 FOR
|
2022-03-23 15:42:43 +01:00
|
|
|
call mtr.add_suppression("InnoDB: Trying to delete tablespace.*pending operations");
|
|
|
|
}
|
|
|
|
--enable_query_log
|