Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 084cff7

Browse files
Fix crossversion test for unsupported versions
The fix in be78006 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
1 parent be78006 commit 084cff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ sub adjust_database_contents
107107
}
108108

109109
# we removed the adminpack extension in v17
110-
if ($old_version >= 12 && $old_version < 17)
110+
if ($old_version < 17)
111111
{
112112
_add_st($result, 'regression',
113113
'drop extension if exists adminpack');

0 commit comments

Comments
 (0)