Re: How to session_preload_libraries multiple libraries in postgresql.conf

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: How to session_preload_libraries multiple libraries in postgresql.conf
Дата
Msg-id 7550.1513194762@sss.pgh.pa.us
обсуждение исходный текст
Ответ на How to session_preload_libraries multiple libraries inpostgresql.conf  (Stephen Froehlich <s.froehlich@cablelabs.com>)
Список pgsql-novice
Stephen Froehlich <s.froehlich@cablelabs.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


В списке pgsql-novice по дате отправления:

Предыдущее
От: Payal Singh
Дата:
Сообщение: Re: How to session_preload_libraries multiple libraries in postgresql.conf
Следующее
От: john snow
Дата:
Сообщение: copy from csv and postgresql 10's new identity column type