Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1x6qOV-000TQf-0G for pgsql-bugs@arkaria.postgresql.org; Wed, 16 Sep 2026 14:13:51 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1x6qOU-007jpn-1P for pgsql-bugs@arkaria.postgresql.org; Wed, 16 Sep 2026 14:13:50 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1x6qOU-007jpf-0f for pgsql-bugs@lists.postgresql.org; Wed, 16 Sep 2026 14:13:50 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1x6qOR-00000000Og1-2zzL for pgsql-bugs@lists.postgresql.org; Wed, 16 Sep 2026 14:13:49 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.18.1/8.18.1) with ESMTP id 68GEDhq2496583; Wed, 16 Sep 2026 10:13:43 -0400 From: Tom Lane To: "David G. Johnston" cc: "jsschmidthb@gmail.com" , "pgsql-bugs@lists.postgresql.org" Subject: Re: BUG #19691: Wrong configuration in .../Postgres/var-19/postgresql.auto.conf In-reply-to: References: <19691-0ae5227d7955d4f3@postgresql.org> Comments: In-reply-to "David G. Johnston" message dated "Wed, 16 Sep 2026 07:05:48 -0500" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <496581.1789568023.1@sss.pgh.pa.us> Content-Transfer-Encoding: quoted-printable Date: Wed, 16 Sep 2026 10:13:43 -0400 Message-ID: <496582.1789568023@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk "David G. Johnston" writes: > On Wednesday, September 16, 2026, PG Bug reporting form < > noreply@postgresql.org> wrote: >> The wrong line: shared_preload_libraries =3D >> '"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 =3D 'auth_permission_dialog,pg_s= tat_statements'; Correct syntax is alter system set shared_preload_libraries =3D auth_permission_dialog,pg_st= at_statements; You could quote the individual list items if you felt a need to: alter system set shared_preload_libraries =3D 'auth_permission_dialog', 'p= g_stat_statements'; but as-is you wrote a single list item that happens to contain a comma. regards, tom lane