From: Peter Eisentraut Date: Fri, 20 Jan 2017 17:00:00 +0000 (-0500) Subject: Paper over pg_upgrade test failure X-Git-Tag: REL_10_BETA1~1062 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c488ea13634897df5f9b5769eb26bbc3d926ce0;p=postgresql 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. --- 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;