From 6c488ea13634897df5f9b5769eb26bbc3d926ce0 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 20 Jan 2017 12:00:00 -0500 Subject: [PATCH] Paper over pg_upgrade test failure The publication test didn't drop all the publications it was creating when it was probably intending to do that. There is still a bug with dependency tracking in there, but this should at least quiet down the build farm. --- src/test/regress/expected/publication.out | 1 + src/test/regress/sql/publication.sql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/test/regress/expected/publication.out b/src/test/regress/expected/publication.out index 47b04f1a57..5784b0fded 100644 --- a/src/test/regress/expected/publication.out +++ b/src/test/regress/expected/publication.out @@ -150,6 +150,7 @@ DROP TABLE testpub_tbl1; DROP PUBLICATION testpub_default; DROP PUBLICATION testpib_ins_trunct; +DROP PUBLICATION testpub_fortbl; DROP SCHEMA pub_test CASCADE; NOTICE: drop cascades to table pub_test.testpub_nopk RESET SESSION AUTHORIZATION; diff --git a/src/test/regress/sql/publication.sql b/src/test/regress/sql/publication.sql index 89a31672fa..87797884d2 100644 --- a/src/test/regress/sql/publication.sql +++ b/src/test/regress/sql/publication.sql @@ -75,6 +75,7 @@ DROP TABLE testpub_tbl1; DROP PUBLICATION testpub_default; DROP PUBLICATION testpib_ins_trunct; +DROP PUBLICATION testpub_fortbl; DROP SCHEMA pub_test CASCADE; -- 2.40.0