diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-02-27 20:27:48 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-02-27 20:27:48 -0500 |
commit | b15db7f6905acb0c40e651bef54d86ffe4b30d39 (patch) | |
tree | 87d38f723c1292b4cf4b958ef2fc683cba46164a | |
parent | bc77be7145e1dfa9296cd219a269c40b6c1d9f9d (diff) | |
download | postgresql-b15db7f6905acb0c40e651bef54d86ffe4b30d39.tar.gz postgresql-b15db7f6905acb0c40e651bef54d86ffe4b30d39.zip |
Drop test view when done with it.
The view just added by commit 53fe7e6cb decompiles differently
in v15 than HEAD (presumably as a consequence of 47bb9db75).
That causes failures in cross-version upgrade testing.
We could teach AdjustUpgrade.pm to compensate for that, but it
seems less painful to just drop the view after we're done with it.
Per buildfarm.
-rw-r--r-- | contrib/postgres_fdw/expected/postgres_fdw.out | 3 | ||||
-rw-r--r-- | contrib/postgres_fdw/sql/postgres_fdw.sql | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/contrib/postgres_fdw/expected/postgres_fdw.out b/contrib/postgres_fdw/expected/postgres_fdw.out index e1ca8f7082d..16bee3dd32c 100644 --- a/contrib/postgres_fdw/expected/postgres_fdw.out +++ b/contrib/postgres_fdw/expected/postgres_fdw.out @@ -11473,6 +11473,9 @@ SELECT count(*) FROM remote_application_name 1 (1 row) +-- Clean up. +DROP FOREIGN TABLE remote_application_name; +DROP VIEW my_application_name; -- =================================================================== -- test parallel commit -- =================================================================== diff --git a/contrib/postgres_fdw/sql/postgres_fdw.sql b/contrib/postgres_fdw/sql/postgres_fdw.sql index e6ea090a7dc..484304e5832 100644 --- a/contrib/postgres_fdw/sql/postgres_fdw.sql +++ b/contrib/postgres_fdw/sql/postgres_fdw.sql @@ -3719,6 +3719,10 @@ SELECT count(*) FROM remote_application_name to_hex(pg_backend_pid()) for current_setting('max_identifier_length')::int); +-- Clean up. +DROP FOREIGN TABLE remote_application_name; +DROP VIEW my_application_name; + -- =================================================================== -- test parallel commit -- =================================================================== |