Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-07-07 Thread Pavel Stehule
2015-07-07 14:13 GMT+02:00 Andres Freund : > On 2015-07-03 06:20:14 +0200, Pavel Stehule wrote: > > I would to use it for controlling (enabling, disabling) CONTEXT in RAISE > > statement in plpgsql. I am thinking so one option for this purpose is > > enough, and I would not to add other option to

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-07-07 Thread Andres Freund
On 2015-07-03 06:20:14 +0200, Pavel Stehule wrote: > I would to use it for controlling (enabling, disabling) CONTEXT in RAISE > statement in plpgsql. I am thinking so one option for this purpose is > enough, and I would not to add other option to specify LOG, CLIENT. I don't think a plpgsql functi

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-07-02 Thread Pavel Stehule
2015-07-03 1:07 GMT+02:00 Tom Lane : > Andres Freund writes: > > On 2015-06-08 14:44:53 +, Jeevan Chalke wrote: > >> This is trivial bug fix in the area of hiding error context. > >> > >> I observed that there are two places from which we are calling this > function > >> to hide the context i

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-07-02 Thread Tom Lane
Andres Freund writes: > On 2015-06-08 14:44:53 +, Jeevan Chalke wrote: >> This is trivial bug fix in the area of hiding error context. >> >> I observed that there are two places from which we are calling this function >> to hide the context in log messages. Those were broken. > Broken in whi

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-06-09 Thread Jeevan Chalke
On Mon, Jun 8, 2015 at 8:19 PM, Andres Freund wrote: > On 2015-06-08 14:44:53 +, Jeevan Chalke wrote: > > The following review has been posted through the commitfest application: > > make installcheck-world: tested, passed > > Implements feature: tested, passed > > Spec compliant:

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-06-08 Thread Pavel Stehule
2015-06-08 16:49 GMT+02:00 Andres Freund : > On 2015-06-08 14:44:53 +, Jeevan Chalke wrote: > > The following review has been posted through the commitfest application: > > make installcheck-world: tested, passed > > Implements feature: tested, passed > > Spec compliant: teste

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-06-08 Thread Andres Freund
On 2015-06-08 14:44:53 +, Jeevan Chalke wrote: > The following review has been posted through the commitfest application: > make installcheck-world: tested, passed > Implements feature: tested, passed > Spec compliant: tested, passed > Documentation:tested, passed >

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-06-08 Thread Jeevan Chalke
The following review has been posted through the commitfest application: make installcheck-world: tested, passed Implements feature: tested, passed Spec compliant: tested, passed Documentation:tested, passed This is trivial bug fix in the area of hiding error context.

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-05-29 Thread Pavel Stehule
Done https://commitfest.postgresql.org/5/257/ 2015-05-29 9:56 GMT+02:00 Pavel Stehule : > > > 2015-05-29 9:53 GMT+02:00 Jeevan Chalke : > >> Pavel, will it be good if you separately submit the >> "bugfix: incomplete implementation of errhidecontext" >> patch in this commitfest? >> >> > ok, I'll

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-05-29 Thread Pavel Stehule
2015-05-29 9:53 GMT+02:00 Jeevan Chalke : > Pavel, will it be good if you separately submit the > "bugfix: incomplete implementation of errhidecontext" > patch in this commitfest? > > ok, I'll do it Pavel > > -- > Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) > To make chan

Re: [HACKERS] bugfix: incomplete implementation of errhidecontext

2015-05-29 Thread Jeevan Chalke
Pavel, will it be good if you separately submit the "bugfix: incomplete implementation of errhidecontext" patch in this commitfest? -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers

[HACKERS] bugfix: incomplete implementation of errhidecontext

2015-04-30 Thread Pavel Stehule
Hi current implementation of errhidecontext is not complete: 1. it sends context to client 2. it collect context although it will not be displayed Attached patch fixing it commit 7ee40ad6e5233f0ca2a5c10d1afcfb5d035164e6 Author: root Date: Thu Apr 30 11:59:45 2015 +0200 fix bug in errhid