aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm b/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm
index a6222ae14c2..c0da0aaff8a 100644
--- a/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm
+++ b/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm
@@ -106,6 +106,13 @@ sub adjust_database_contents
'drop extension if exists test_ext7');
}
+ # we removed this test-support function in v17
+ if ($old_version >= 15 && $old_version < 17)
+ {
+ _add_st($result, 'regression',
+ 'drop function get_columns_length(oid[])');
+ }
+
# stuff not supported from release 16
if ($old_version >= 12 && $old_version < 16)
{