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.
pull/20/head
Peter Eisentraut 9 years ago
parent e4c27f5bef
commit 6c488ea136
  1. 1
      src/test/regress/expected/publication.out
  2. 1
      src/test/regress/sql/publication.sql

@ -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;

@ -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;

Loading…
Cancel
Save