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