pgsql: Don't hardcode contrib_regression dbname in postgres_fdw and dbl - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Don't hardcode contrib_regression dbname in postgres_fdw and dbl
Date
Msg-id E1XME1k-0005tN-Li@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Don't hardcode contrib_regression dbname in postgres_fdw and dblink tests.

That allows parallel installcheck to succeed inside contrib/. The
output is not particularly pretty unless make's -O option to
synchronize the output is used.

There's other tests, outside contrib, that use a hardcoded,
non-unique, database name. Those prohibit paralell installcheck to be
used across more directories; but that's something for a separate
patch.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/ddc2504dbcf2af97b58a91b071768c17774d58d1

Modified Files
--------------
contrib/dblink/Makefile                        |    3 --
contrib/dblink/expected/dblink.out             |   43 ++++++++++++----------
contrib/dblink/sql/dblink.sql                  |   45 ++++++++++++++----------
contrib/postgres_fdw/Makefile                  |    3 --
contrib/postgres_fdw/expected/postgres_fdw.out |    8 +++--
contrib/postgres_fdw/sql/postgres_fdw.sql      |    8 +++--
6 files changed, 64 insertions(+), 46 deletions(-)


pgsql-committers by date:

Previous
From: Andres Freund
Date:
Subject: pgsql: Specify the port in dblink and postgres_fdw tests.
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Implement IF NOT EXISTS for CREATE SEQUENCE.