1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00

Fix crossversion test for unsupported versions

The fix in be78006741 only accounted for supported versions of postgres
but the crossversion test use 11 as the source version, which is an EOL
version.  Fix by removing the lower bound in the adminpack cleanup.

Discussion: https://postgr.es/m/0CFB76D0-0510-48B2-9916-1199F93BC28C@yesql.se
This commit is contained in:
Daniel Gustafsson
2024-03-04 15:09:59 +01:00
parent be78006741
commit 084cff7899

View File

@ -107,7 +107,7 @@ sub adjust_database_contents
}
# we removed the adminpack extension in v17
if ($old_version >= 12 && $old_version < 17)
if ($old_version < 17)
{
_add_st($result, 'regression',
'drop extension if exists adminpack');