shared_preload_libraries is ignored in single user mode

Поиск
Список
Период
Сортировка
От KaiGai Kohei
Тема shared_preload_libraries is ignored in single user mode
Дата
Msg-id 4C5A5576.3070003@ak.jp.nec.com
обсуждение исходный текст
Ответы Re: shared_preload_libraries is ignored in single user mode  (KaiGai Kohei <kaigai@ak.jp.nec.com>)
Список pgsql-hackers
I found out "shared_preload_libraries" setting is ignored when we launch
postgres in single user mode.

In this case, postgres command is launched with "--single" argument,
then the main() directly invokes PostgresMain(); without going through
PostmasterMain() which calls process_shared_preload_libraries().

I think we should put the following code block on somewhere within
PostgresMain() to fix up it.
 /*  * If not under postmaster, shared preload libraries are not  * loaded yet, so we try to load them here.  */ if
(!IsUnderPostmaster)    process_shared_preload_libraries();
 

The reason why I want to use modules in single user mode is to assign
initial security labels on database objects just after initdb.
But, the GUC is ignored, we cannot invokes the routines in the module. :(

Thanks,
-- 
KaiGai Kohei <kaigai@ak.jp.nec.com>


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

Предыдущее
От: Joshua Tolley
Дата:
Сообщение: Re: GROUPING SETS revisited
Следующее
От: Simon Riggs
Дата:
Сообщение: Re: MERGE Specification