Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb15db7f

Browse files
committed
Drop test view when done with it.
The view just added by commit53fe7e6 decompiles differentlyin v15 than HEAD (presumably as a consequence of47bb9db).That causes failures in cross-version upgrade testing.We could teach AdjustUpgrade.pm to compensate for that, but itseems less painful to just drop the view after we're done with it.Per buildfarm.
1 parentbc77be7 commitb15db7f

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+
DROPVIEW my_application_name;
3725+
37223726
-- ===================================================================
37233727
-- test parallel commit
37243728
-- ===================================================================

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp