Skip to content

Commit 13632b0

Browse files
committed
Revert "Add mode where contrib installcheck runs each module in a separately named database."
This reverts commit 513e546.
1 parent 3c4eec4 commit 13632b0

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
@@ -11,9 +11,6 @@ DATA = dblink--1.0.sql dblink--unpackaged--1.0.sql
1111

1212
REGRESS = dblink
1313

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

src/Makefile.global.in

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -431,15 +431,6 @@ submake-libpgport:
431431

432432
PL_TESTDB = pl_regression
433433
CONTRIB_TESTDB = contrib_regression
434-
ifneq ($(MODULE_big),)
435-
CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULE_big)
436-
else
437-
ifneq ($(MODULES),)
438-
CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULES)
439-
else
440-
CONTRIB_TESTDB_MODULE = contrib_regression
441-
endif
442-
endif
443434

444435
ifdef NO_LOCALE
445436
NOLOCALE += --no-locale

src/makefiles/pgxs.mk

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,7 @@ distclean maintainer-clean: clean
230230
ifdef REGRESS
231231

232232
# Select database to use for running the tests
233-
ifdef USE_MODULE_DB
234-
REGRESS_OPTS += --dbname=$(CONTRIB_TESTDB_MODULE)
235-
else
236-
REGRESS_OPTS += --dbname=$(CONTRIB_TESTDB)
237-
endif
233+
REGRESS_OPTS += --dbname=$(CONTRIB_TESTDB)
238234

239235
# where to find psql for running the tests
240236
PSQLDIR = $(bindir)

0 commit comments

Comments
 (0)