Re: Subject: Assistance Required: Adding Multiple Libraries to shared_preload_libraries in postgresql.conf

From: Ron Johnson <ronljohnsonjr(at)gmail(dot)com>
To:
Cc: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Subject: Assistance Required: Adding Multiple Libraries to shared_preload_libraries in postgresql.conf
Date: 2024-03-25 21:43:10
Message-ID: CANzqJaCakwf3WDxdupj8hjScY3MRfCFAffuoVsAohSJddC3-hw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Mon, Mar 25, 2024 at 5:41 PM Uzair Khan <u595530(at)gmail(dot)com> wrote:

> Dear Postgres Community,
>
> I hope this message finds you well. I am reaching out regarding an issue
> I've encountered while attempting to configure the shared_preload_libraries
> variable in the postgresql.conf file to include multiple libraries.
>
> The problem arises when I try to add both the 'citus' and
> 'pg_stat_statement' libraries to the shared_preload_libraries variable.
> Here is the configuration snippet I attempted:
>
> shared_preload_libraries = 'citus', 'pg_stat_statement'
>

One string, not two:
shared_preload_libraries = 'citus, pg_stat_statement'

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Wells Oliver 2024-03-26 22:51:39 Reasonable fetch_size values when pairing with Redshift?
Previous Message Uzair Khan 2024-03-25 21:41:28 Subject: Assistance Required: Adding Multiple Libraries to shared_preload_libraries in postgresql.conf