Skip to content

Commit b15db7f

Browse files
committed
Drop test view when done with it.
The view just added by commit 53fe7e6 decompiles differently in v15 than HEAD (presumably as a consequence of 47bb9db). 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.
1 parent bc77be7 commit b15db7f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

contrib/postgres_fdw/expected/postgres_fdw.out

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11473,6 +11473,9 @@ SELECT count(*) FROM remote_application_name
1147311473
1
1147411474
(1 row)
1147511475

11476+
-- Clean up.
11477+
DROP FOREIGN TABLE remote_application_name;
11478+
DROP VIEW my_application_name;
1147611479
-- ===================================================================
1147711480
-- test parallel commit
1147811481
-- ===================================================================

contrib/postgres_fdw/sql/postgres_fdw.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3719,6 +3719,10 @@ SELECT count(*) FROM remote_application_name
37193719
to_hex(pg_backend_pid())
37203720
for current_setting('max_identifier_length')::int);
37213721

3722+
-- Clean up.
3723+
DROP FOREIGN TABLE remote_application_name;
3724+
DROP VIEW my_application_name;
3725+
37223726
-- ===================================================================
37233727
-- test parallel commit
37243728
-- ===================================================================

0 commit comments

Comments
 (0)