We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1720fe commit b65b9daCopy full SHA for b65b9da
src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm
@@ -112,6 +112,16 @@ sub adjust_database_contents
112
'drop extension if exists test_ext7');
113
}
114
115
+ # we removed these test-support functions in v18
116
+ if ($old_version < 18)
117
+ {
118
+ _add_st($result, 'regression', 'drop function ttdummy()');
119
+ _add_st($result, 'regression', 'drop function set_ttdummy(integer)');
120
+ _add_st($result, 'regression', 'drop function autoinc()');
121
+ _add_st($result, 'regression', 'drop function check_foreign_key()');
122
+ _add_st($result, 'regression', 'drop function check_primary_key()');
123
+ }
124
+
125
# we removed this test-support function in v17
126
if ($old_version >= 15 && $old_version < 17)
127
{
0 commit comments