Re: libpq environment variables in the server
Noah Misch <noah@leadboat.com>
From: Noah Misch <noah@leadboat.com>
To: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Cc: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>, pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2019-03-15T15:01:12Z
Lists: pgsql-hackers
On Fri, Mar 15, 2019 at 10:06:29AM +0000, Dagfinn Ilmari Mannsåker wrote:
> Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes:
>
> > On 2019-03-15 05:00, Noah Misch wrote:
> >> I consider the following style more idiomatic:
> >>
> >> {
> >> local %ENV;
> >> delete $ENV{PGAPPNAME};
> >> ...
> >> }
> >
> > That doesn't work because the first line clears the entire environment.
>
> The solution to that is to do 'local %ENV = %ENV;', to assign a copy of
> the original to the localised variable.
That's the right thing, not what I wrote. We use that in
src/bin/initdb/t/001_initdb.pl.
Commits
-
Don't propagate PGAPPNAME through pg_ctl in tests
- 8e93a516e68b 12.0 landed