Skip to content

Commit 6555920

Browse files
committed
Revert "Add mode where contrib installcheck runs each module in a separately named database."
This reverts commit c8f666a.
1 parent c52e0e2 commit 6555920

File tree

3 files changed

+1
-17
lines changed

3 files changed

+1
-17
lines changed

contrib/dblink/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ DATA = uninstall_dblink.sql
1010
REGRESS = dblink
1111

1212

13-
# the db name is hard-coded in the tests
14-
override undefine USE_MODULE_DB
15-
1613
ifdef USE_PGXS
1714
PG_CONFIG = pg_config
1815
PGXS := $(shell $(PG_CONFIG) --pgxs)

src/Makefile.global.in

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -284,15 +284,6 @@ BZIP2 = bzip2
284284

285285
PL_TESTDB = pl_regression
286286
CONTRIB_TESTDB = contrib_regression
287-
ifneq ($(MODULE_big),)
288-
CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULE_big)
289-
else
290-
ifneq ($(MODULES),)
291-
CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULES)
292-
else
293-
CONTRIB_TESTDB_MODULE = contrib_regression
294-
endif
295-
endif
296287

297288
# Installation.
298289

src/makefiles/pgxs.mk

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,7 @@ ifdef REGRESS
233233

234234
# Calling makefile can set REGRESS_OPTS, but this is the default:
235235
ifndef REGRESS_OPTS
236-
ifdef USE_MODULE_DB
237-
REGRESS_OPTS = --dbname=$(CONTRIB_TESTDB_MODULE)
238-
else
239-
REGRESS_OPTS = --dbname=$(CONTRIB_TESTDB)
240-
endif
236+
REGRESS_OPTS = --dbname=$(CONTRIB_TESTDB)
241237
endif
242238

243239
# where to find psql for running the tests

0 commit comments

Comments
 (0)