'value' has special behaviour in alter system - Mailing list pgsql-docs

From PG Doc comments form
Subject 'value' has special behaviour in alter system
Date
Msg-id 167105927893.1897.13227723035830709578@wrigleys.postgresql.org
Whole thread Raw
Responses Re: 'value' has special behaviour in alter system  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/15/sql-altersystem.html
Description:

Documentation say
ALTER SYSTEM SET configuration_parameter { TO | = } { value | 'value' |
DEFAULT }

The variant 'value' has special, not obvious behaviour and must be
documented.
For instance
ALTER SYSTEM SET shared_preload_libraries TO a, b, c;
Lead to
shared_preload_libraries = 'a, b, c'
in the postgresql.auto.conf and working fine. (If a, b, c are correct
libraries.) But
ALTER SYSTEM SET shared_preload_libraries TO 'a, b, c';
Lead to
shared_preload_libraries = '"a, b, c"'
in the postgresql.auto.conf and postgresql will not even start. Without any
errors in the postgresql log files. :) In the system log will be "file not
found".

pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: No multi range functions on version 12
Next
From: Magnus Hagander
Date:
Subject: Re: No multi range functions on version 12