git.postgresql.org Git - postgresql.git/commitdiff

git projects / postgresql.git / commitdiff
? search:
summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 737668d)
Drop test view when done with it.
2023年2月28日 01:27:48 +0000 (20:27 -0500)
2023年2月28日 01:27:48 +0000 (20:27 -0500)
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.


diff --git a/contrib/postgres_fdw/expected/postgres_fdw.out b/contrib/postgres_fdw/expected/postgres_fdw.out
index 502c884e6485f55b9b2514f9a29e387fe2d2fa23..04a3ef450cf0340d688a875b294d34ba96b0b170 100644 (file)
--- a/contrib/postgres_fdw/expected/postgres_fdw.out
+++ b/contrib/postgres_fdw/expected/postgres_fdw.out
@@ -11679,6 +11679,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 52565be9ef541bf28e12b4438203ea5376a48e8f..4f3088c03ea1855ba6e215dc6a2dd64afde492b1 100644 (file)
--- a/contrib/postgres_fdw/sql/postgres_fdw.sql
+++ b/contrib/postgres_fdw/sql/postgres_fdw.sql
@@ -3894,6 +3894,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
-- ===================================================================
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /