From b65b9da568fd93f8fe3b41f4074f225eead104d2 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 8 Apr 2025 20:21:03 -0400 Subject: [PATCH] Adjust AdjustUpgrade.pm for commit b1720fe63. Need to delete the functions we no longer have available from the dumps to be reloaded from old versions. Per buildfarm. --- src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm b/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm index c451aea3ac9..609275e2c26 100644 --- a/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm +++ b/src/test/perl/PostgreSQL/Test/AdjustUpgrade.pm @@ -112,6 +112,16 @@ sub adjust_database_contents 'drop extension if exists test_ext7'); } + # we removed these test-support functions in v18 + if ($old_version < 18) + { + _add_st($result, 'regression', 'drop function ttdummy()'); + _add_st($result, 'regression', 'drop function set_ttdummy(integer)'); + _add_st($result, 'regression', 'drop function autoinc()'); + _add_st($result, 'regression', 'drop function check_foreign_key()'); + _add_st($result, 'regression', 'drop function check_primary_key()'); + } + # we removed this test-support function in v17 if ($old_version >= 15 && $old_version < 17) { -- 2.39.5