pgsql: Handle USE_MODULE_DB for all tests able to use an installedpost - Mailing list pgsql-committers

From Noah Misch
Subject pgsql: Handle USE_MODULE_DB for all tests able to use an installedpost
Date
Msg-id E1hBq3r-0002EJ-Cf@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Handle USE_MODULE_DB for all tests able to use an installed postmaster.

When $(MODULES) and $(MODULE_big) are empty, derive the database name
from the first element of $(REGRESS) instead of using a constant string.
When deriving the database name from $(MODULES), use its first element
instead of the entire list; the earlier approach would fail if any
multi-module directory had $(REGRESS) tests.  Treat isolation suites and
src/pl correspondingly.  Under USE_MODULE_DB=1, installcheck-world and
check-world no longer reuse any database name in a given postmaster.
Buildfarm members axolotl, mandrill and frogfish saw spurious "is being
accessed by other users" failures that would not have happened without
database name reuse.  (The CountOtherDBBackends() 5s deadline expired
during DROP DATABASE; a backend for an earlier test suite had used the
same database name and had not yet exited.)  Back-patch to 9.4 (all
supported versions), except bits pertaining to isolation suites.

Concept reviewed by Andrew Dunstan, Andres Freund and Tom Lane.

Discussion: https://postgr.es/m/20190401135213.GE891537@rfd.leadboat.com

Branch
------
REL9_5_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/267d83c7d7d21b8ca3e2b99b231766ac050b8c93

Modified Files
--------------
src/Makefile.global.in | 21 +++++++++++++--------
src/makefiles/pgxs.mk  |  7 +------
2 files changed, 14 insertions(+), 14 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Doc: clarify partial-index example.
Next
From: Andres Freund
Date:
Subject: pgsql: tableam: basic documentation.