diff options
author | Peter Eisentraut | 2017-01-20 17:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-01-20 15:00:37 +0000 |
commit | 6c488ea13634897df5f9b5769eb26bbc3d926ce0 (patch) | |
tree | f81ef5b77ed183eae6b09515a7f06a48e51432b2 /src | |
parent | e4c27f5befbfc80a1bf96fc93256dce08b148238 (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/publication.out | 1 | ||||
-rw-r--r-- | src/test/regress/sql/publication.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/test/regress/expected/publication.out b/src/test/regress/expected/publication.out index 47b04f1a57a..5784b0fded4 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 89a31672fa8..87797884d25 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; |