We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a8875 commit be78006Copy full SHA for be78006
src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm
@@ -106,6 +106,16 @@ sub adjust_database_contents
106
'drop extension if exists test_ext7');
107
}
108
109
+ # we removed the adminpack extension in v17
110
+ if ($old_version >= 12 && $old_version < 17)
111
+ {
112
+ _add_st($result, 'regression',
113
+ 'drop extension if exists adminpack');
114
+ _add_st($result, 'postgres',
115
+ 'drop database contrib_regression_adminpack');
116
+ delete($dbnames{'contrib_regression_adminpack'});
117
+ }
118
+
119
# we removed this test-support function in v17
120
if ($old_version >= 15 && $old_version < 17)
121
{
0 commit comments