Re: How to session_preload_libraries multiple libraries in postgresql.conf

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Stephen Froehlich <s(dot)froehlich(at)cablelabs(dot)com>
Cc: "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: How to session_preload_libraries multiple libraries in postgresql.conf
Date: 2017-12-13 19:52:42
Message-ID: 7550.1513194762@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Stephen Froehlich <s(dot)froehlich(at)cablelabs(dot)com> writes:
> Right now I have the following in my postgresql.conf:
> session_preload_libraries = 'pgcrypto'
> session_preload_libraries = 'auto_explain'
> session_preload_libraries = 'tablefunc'

Only the last one is going to take effect. What you need here is
just one assignment of the parameter:

session_preload_libraries = 'pgcrypto, auto_explain, tablefunc'

regards, tom lane

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message john snow 2017-12-14 01:53:43 copy from csv and postgresql 10's new identity column type
Previous Message Payal Singh 2017-12-13 19:50:54 Re: How to session_preload_libraries multiple libraries in postgresql.conf