agora inbox for pgsql-bugs@postgresql.org
help / color / mirror / Atom feedBUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf
4+ messages / 4 participants
[nested] [flat]
* BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf
@ 2026-09-16 10:47 PG Bug reporting form <noreply@postgresql.org>
2026-09-16 12:05 ` Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf David G. Johnston <david.g.johnston@gmail.com>
0 siblings, 1 reply; 4+ messages in thread
From: PG Bug reporting form @ 2026-09-16 10:47 UTC (permalink / raw)
To: pgsql-bugs@lists.postgresql.org; +Cc: jsschmidthb@gmail.com
The following bug has been logged on the website:
Bug reference: 19691
Logged by: Jürgen Schmidt
Email address: jsschmidthb@gmail.com
PostgreSQL version: 19beta3
Operating system: macOS Tahoe 26.6.2
Description:
The wrong line: shared_preload_libraries =
'"auth_permission_dialog,pg_stat_statements"':
The quotation marks must be removed.
The right line: shared_preload_libraries =
'auth_permission_dialog,pg_stat_statements'.
^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf
2026-09-16 10:47 BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf PG Bug reporting form <noreply@postgresql.org>
@ 2026-09-16 12:05 ` David G. Johnston <david.g.johnston@gmail.com>
2026-09-16 14:13 ` Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf Tom Lane <tgl@sss.pgh.pa.us>
0 siblings, 1 reply; 4+ messages in thread
From: David G. Johnston @ 2026-09-16 12:05 UTC (permalink / raw)
To: jsschmidthb@gmail.com <jsschmidthb@gmail.com>; pgsql-bugs@lists.postgresql.org <pgsql-bugs@lists.postgresql.org>
On Wednesday, September 16, 2026, PG Bug reporting form <
noreply@postgresql.org> wrote:
> The following bug has been logged on the website:
>
> Bug reference: 19691
> Logged by: Jürgen Schmidt
> Email address: jsschmidthb@gmail.com
> PostgreSQL version: 19beta3
> Operating system: macOS Tahoe 26.6.2
> Description:
>
> The wrong line: shared_preload_libraries =
> '"auth_permission_dialog,pg_stat_statements"':
>
> The quotation marks must be removed.
>
> The right line: shared_preload_libraries =
> 'auth_permission_dialog,pg_stat_statements'.
>
Seems more likely to be operator error than a bug.
David J.
^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf
2026-09-16 10:47 BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf PG Bug reporting form <noreply@postgresql.org>
2026-09-16 12:05 ` Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf David G. Johnston <david.g.johnston@gmail.com>
@ 2026-09-16 14:13 ` Tom Lane <tgl@sss.pgh.pa.us>
2026-09-16 15:42 ` Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf Jürgen Schmidt <jsschmidthb@gmail.com>
0 siblings, 1 reply; 4+ messages in thread
From: Tom Lane @ 2026-09-16 14:13 UTC (permalink / raw)
To: David G. Johnston <david.g.johnston@gmail.com>; +Cc: jsschmidthb@gmail.com <jsschmidthb@gmail.com>; pgsql-bugs@lists.postgresql.org <pgsql-bugs@lists.postgresql.org>
"David G. Johnston" <david.g.johnston@gmail.com> writes:
> On Wednesday, September 16, 2026, PG Bug reporting form <
> noreply@postgresql.org> wrote:
>> The wrong line: shared_preload_libraries =
>> '"auth_permission_dialog,pg_stat_statements"':
>> The quotation marks must be removed.
> Seems more likely to be operator error than a bug.
Specifically, that is what you'd get from
alter system set shared_preload_libraries = 'auth_permission_dialog,pg_stat_statements';
Correct syntax is
alter system set shared_preload_libraries = auth_permission_dialog,pg_stat_statements;
You could quote the individual list items if you felt a need to:
alter system set shared_preload_libraries = 'auth_permission_dialog', 'pg_stat_statements';
but as-is you wrote a single list item that happens to contain a
comma.
regards, tom lane
^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf
2026-09-16 10:47 BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf PG Bug reporting form <noreply@postgresql.org>
2026-09-16 12:05 ` Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf David G. Johnston <david.g.johnston@gmail.com>
2026-09-16 14:13 ` Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf Tom Lane <tgl@sss.pgh.pa.us>
@ 2026-09-16 15:42 ` Jürgen Schmidt <jsschmidthb@gmail.com>
0 siblings, 0 replies; 4+ messages in thread
From: Jürgen Schmidt @ 2026-09-16 15:42 UTC (permalink / raw)
To: Tom Lane <tgl@sss.pgh.pa.us>; +Cc: David G. Johnston <david.g.johnston@gmail.com>; pgsql-bugs@lists.postgresql.org <pgsql-bugs@lists.postgresql.org>
Thank you very much for the prompt responses and for your time.
Best regards, Juergen Schmidt
On Wed, 16 Sept 2026 at 16:13, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> "David G. Johnston" <david.g.johnston@gmail.com> writes:
> > On Wednesday, September 16, 2026, PG Bug reporting form <
> > noreply@postgresql.org> wrote:
> >> The wrong line: shared_preload_libraries =
> >> '"auth_permission_dialog,pg_stat_statements"':
> >> The quotation marks must be removed.
>
> > Seems more likely to be operator error than a bug.
>
> Specifically, that is what you'd get from
>
> alter system set shared_preload_libraries =
> 'auth_permission_dialog,pg_stat_statements';
>
> Correct syntax is
>
> alter system set shared_preload_libraries =
> auth_permission_dialog,pg_stat_statements;
>
> You could quote the individual list items if you felt a need to:
>
> alter system set shared_preload_libraries = 'auth_permission_dialog',
> 'pg_stat_statements';
>
> but as-is you wrote a single list item that happens to contain a
> comma.
>
> regards, tom lane
>
^ permalink raw reply [nested|flat] 4+ messages in thread
end of thread, other threads:[~2026-09-16 15:42 UTC | newest]
Thread overview: 4+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2026-09-16 10:47 BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf PG Bug reporting form <noreply@postgresql.org>
2026-09-16 12:05 ` David G. Johnston <david.g.johnston@gmail.com>
2026-09-16 14:13 ` Tom Lane <tgl@sss.pgh.pa.us>
2026-09-16 15:42 ` Jürgen Schmidt <jsschmidthb@gmail.com>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox