Avoid unfortunate IPC::Run path caching in PostgresNode
authorAndrew Dunstan <andrew@dunslane.net>
Tue, 20 Apr 2021 14:14:16 +0000 (10:14 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Tue, 20 Apr 2021 14:36:10 +0000 (10:36 -0400)
commit95c3a1956ec9eac686c1b69b033dd79211b72343
tree54de4ec307d6a02dcda3abb6ff99d221065a438c
parent8b4b5669cde2b17bd6b5d68f584d97078f3296ac
Avoid unfortunate IPC::Run path caching in PostgresNode

Commit b34ca595ab provided for installation-aware instances of
PostgresNode. However, it turns out that IPC::Run works against this by
caching the path to a binary and not consulting the path again, even if
it has changed. We work around this by calling Postgres binaries with
the installed path rather than just a bare name to be looked up in the
environment path, if there is an installed path. For the common case
where there is no installed path we continue to use the bare command
name.

Diagnosis and solution from Mark Dilger

Discussion: https://postgr.es/m/E8F512F8-B4D6-4514-BA8D-2E671439DA92@enterprisedb.com
src/test/perl/PostgresNode.pm