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
This commit is contained in:
Sergei Golubchik 2024-03-28 18:23:11 +01:00
parent 2fcf2ec229
commit faf686db9e

View file

@ -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 )
{