pgsql: Fix ALTER SYSTEM to cope with duplicate entries inpostgresql.au - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix ALTER SYSTEM to cope with duplicate entries inpostgresql.au
Date
Msg-id E1hxyf0-00023E-6L@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix ALTER SYSTEM to cope with duplicate entries in postgresql.auto.conf.

ALTER SYSTEM itself normally won't make duplicate entries (although
up till this patch, it was possible to confuse it by writing case
variants of a GUC's name).  However, if some external tool has appended
entries to the file, that could result in duplicate entries for a single
GUC name.  In such a situation, ALTER SYSTEM did exactly the wrong thing,
because it replaced or removed only the first matching entry, leaving
the later one(s) still there and hence still determining the active value.

This patch fixes that by making ALTER SYSTEM sweep through the file and
remove all matching entries, then (if not ALTER SYSTEM RESET) append the
new setting to the end.  This means entries will be in order of last
setting rather than first setting, but that shouldn't hurt anything.

Also, make the comparisons case-insensitive so that the right things
happen if you do, say, ALTER SYSTEM SET "TimeZone" = 'whatever'.

This has been broken since ALTER SYSTEM was invented, so back-patch
to all supported branches.

Ian Barwick, with minor mods by me

Discussion: https://postgr.es/m/aed6cc9f-98f3-2693-ac81-52bb0052307e@2ndquadrant.com

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/32d38f54a369290cd5c5efb939c9f037a7c13e80

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


pgsql-committers by date:

Previous
From: Peter Geoghegan
Date:
Subject: pgsql: Remove block number field from nbtree stack.
Next
From: Tom Lane
Date:
Subject: pgsql: Doc: improve documentation about postgresql.auto.conf.