]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Drop test view when done with it.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 28 Feb 2023 01:27:48 +0000 (20:27 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 28 Feb 2023 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.

contrib/postgres_fdw/expected/postgres_fdw.out
contrib/postgres_fdw/sql/postgres_fdw.sql

index e1ca8f7082df22a37749dcc67613797b0cec9fd3..16bee3dd32cb85921f2a1cd42b1a2601db95022f 100644 (file)
@@ -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
 -- ===================================================================
index e6ea090a7dc33569e4a2c3fc181525a87e633a94..484304e5832b61a69bb9cac5b54d307962ebad36 100644 (file)
@@ -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
 -- ===================================================================