Re: pgsql: Support configurable eventlog application names on Windows

Поиск
Список
Период
Сортировка
От Magnus Hagander
Тема Re: pgsql: Support configurable eventlog application names on Windows
Дата
Msg-id CABUevEyA4HB=1TCFgDqZ_rM1==2vggXAaArGg6859E+EwaWGyw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: pgsql: Support configurable eventlog application names on Windows  (Jaime Casanova <jaime@2ndquadrant.com>)
Список pgsql-committers
On Tue, Oct 25, 2011 at 22:21, Jaime Casanova <jaime@2ndquadrant.com> wrote:
> On Tue, Oct 25, 2011 at 1:05 PM, Magnus Hagander <magnus@hagander.net> wrote:
>> Support configurable eventlog application names on Windows
>>
>> This allows different instances to use the eventlog with different
>> identifiers, by setting the event_source GUC, similar to how
>> syslog_ident works.
>>
>
> if i uncomment event_source in a linux env i get this error:
> """
> LOG:  unrecognized configuration parameter "event_source" in file
> "/usr/local/pgsql/9.2/data/postgresql.conf" line 326
> FATAL:  configuration file "/usr/local/pgsql/9.2/data/postgresql.conf"
> contains errors
> """
>
> this is because the definition of the GUC is inside an #ifdef, but the
> error message is not very informative...
> so, i tried to add a check_event_source (attached) and the error now
> looks like this
>
> """
> LOG:  22023: event_source can only be setted in windows builds
> LOCATION:  call_string_check_hook, guc.c:8172
> FATAL:  XX000: failed to initialize event_source to "PostgreSQL"
> LOCATION:  InitializeOneGUCOption, guc.c:3959
> """


Ugh, you are right. I thought I had fixed that, but it seems not. Will fix.

I think the proper fix is to just remove the #ifdef though. There's
precedent with e.g. syslog_ident, that we just ignore the setting if
it's not supported on that platform.

--
 Magnus Hagander
 Me: http://www.hagander.net/
 Work: http://www.redpill-linpro.com/

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

Предыдущее
От: Jaime Casanova
Дата:
Сообщение: Re: pgsql: Support configurable eventlog application names on Windows
Следующее
От: Magnus Hagander
Дата:
Сообщение: pgsql: Make event_source visible on all platforms