Re: [GENERAL] RAISE NOTICE ... and CONTEXT field of the error report.

2013-01-22 Thread Dmitriy Igrishin
Hey Marc, 2013/1/22 Marc Schablewski > > Am 22.01.2013 14:59, schrieb Dmitriy Igrishin: > > Hey all, > > Is there way to turn off printing of CONTEXT field of the error report > > I think, this might help: > http://www.depesz.com/2008/07/12/suppressing-context-lines-in-psql/ > > Marc > > I

Re: [GENERAL] RAISE NOTICE ... and CONTEXT field of the error report.

2013-01-22 Thread Marc Schablewski
Am 22.01.2013 14:59, schrieb Dmitriy Igrishin: > Hey all, > > Is there way to turn off printing of CONTEXT field of the error report > I think, this might help: http://www.depesz.com/2008/07/12/suppressing-context-lines-in-psql/ Marc

[GENERAL] RAISE NOTICE ... and CONTEXT field of the error report.

2013-01-22 Thread Dmitriy Igrishin
Hey all, Is there way to turn off printing of CONTEXT field of the error report in the following case: create or replace function foo() returns void language plpgsql as $$ begin raise notice 'notice from foo()'; end; $$; create or replace function bar() returns void language plpgsql as $$ begin