pgsql: Fix processing of PGC_BACKEND GUC parameters on Windows. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix processing of PGC_BACKEND GUC parameters on Windows.
Date
Msg-id E1WWTfT-0000T1-Gx@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix processing of PGC_BACKEND GUC parameters on Windows.

EXEC_BACKEND builds (i.e., Windows) failed to absorb values of PGC_BACKEND
parameters if they'd been changed post-startup via the config file.  This
for example prevented log_connections from working if it were turned on
post-startup.  The mechanism for handling this case has always been a bit
of a kluge, and it wasn't revisited when we implemented EXEC_BACKEND.
While in a normal forking environment new backends will inherit the
postmaster's value of such settings, EXEC_BACKEND backends have to read
the settings from the CONFIG_EXEC_PARAMS file, and they were mistakenly
rejecting them.  So this case has always been broken in the Windows port;
so back-patch to all supported branches.

Amit Kapila

Branch
------
REL8_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/30e434bdf9afd31f297c63011583f63eecf08bf6

Modified Files
--------------
src/backend/utils/misc/guc.c |   20 ++++++++++++++++++++
1 file changed, 20 insertions(+)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: ecpg/ecpglib must build the src/port files it uses with -DFRONTE
Next
From: Tom Lane
Date:
Subject: pgsql: Fix processing of PGC_BACKEND GUC parameters on Windows.