From faf686db9e9d7dd85f5f917d1d8c3fa0a5ab27cc Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 28 Mar 2024 18:23:11 +0100 Subject: [PATCH] MDEV-22955 innodb.innodb-alter fails in buildbot with extra warning add 10.5-specific global suppression. the extra warning is gone in 10.6 --- mysql-test/mysql-test-run.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 6834a499c6e..14a6293ac29 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -4518,6 +4518,9 @@ sub extract_warning_lines ($$) { qr/sql_type\.cc.* runtime error: member call.*object.* 'Type_collection'/, ); + push @antipatterns, qr/though there are still open handles to table/ + if $mysql_version_id < 100600; + my $matched_lines= []; LINE: foreach my $line ( @lines ) {