Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 71a7562

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 737668d commit 71a7562

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
@@ -11679,6 +11679,9 @@ SELECT count(*) FROM remote_application_name
1167911679
1
1168011680
(1 row)
1168111681

11682+
-- Clean up.
11683+
DROP FOREIGN TABLE remote_application_name;
11684+
DROP VIEW my_application_name;
1168211685
-- ===================================================================
1168311686
-- test parallel commit
1168411687
-- ===================================================================

contrib/postgres_fdw/sql/postgres_fdw.sql

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

3897+
-- Clean up.
3898+
DROP FOREIGN TABLE remote_application_name;
3899+
DROP VIEW my_application_name;
3900+
38973901
-- ===================================================================
38983902
-- test parallel commit
38993903
-- ===================================================================

0 commit comments

Comments
 (0)