diff --git a/contrib/postgres_fdw/expected/postgres_fdw.out b/contrib/postgres_fdw/expected/postgres_fdw.out index e1ca8f7082d..16bee3dd32c 100644 --- a/contrib/postgres_fdw/expected/postgres_fdw.out +++ b/contrib/postgres_fdw/expected/postgres_fdw.out @@ -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 -- =================================================================== diff --git a/contrib/postgres_fdw/sql/postgres_fdw.sql b/contrib/postgres_fdw/sql/postgres_fdw.sql index e6ea090a7dc..484304e5832 100644 --- a/contrib/postgres_fdw/sql/postgres_fdw.sql +++ b/contrib/postgres_fdw/sql/postgres_fdw.sql @@ -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 -- ===================================================================