Re: avoiding CONTEXT messages

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: avoiding CONTEXT messages
Дата
Msg-id CAFj8pRBQgzN2FYGy-EPRSE8GFjvFNS9fTDmX7u5bnYPK6=1ZuA@mail.gmail.com
обсуждение исходный текст
Ответ на avoiding CONTEXT messages  (Filip Rembiałkowski <filip.rembialkowski@gmail.com>)
Список pgsql-general
2012/5/11 Filip Rembiałkowski <filip.rembialkowski@gmail.com>:
> Hi,
>
> I am using PostgreSQL 9.0 and I want to suppress CONTEXT part of error
> message for selected user defined Pl/PgSQL functions.
> Is this possible?

probably no.

context is detected before filtering is applyed

Pavel


>
> http://www.postgresql.org/docs/9.0/static/runtime-config-logging.html#GUC-LOG-ERROR-VERBOSITY
> suggests it is...
> My function is running on superuser account.
> I tried log_error_verbosity but it seems to not affect client messages.
>
> create or replace function test() returns void language plpgsql as 'begin
> drop table if exists daddyiamnothere; end' ;
> select test();
> set log_error_verbosity to terse;
> select test();
>
>
> Thanks
>

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

Предыдущее
От: Filip Rembiałkowski
Дата:
Сообщение: avoiding CONTEXT messages
Следующее
От: Alban Hertroys
Дата:
Сообщение: Re: UDF in C slow