Re: pgsql: Change error handling of out of scope variables in ecpg.

2019-01-30 Thread Tom Lane
David Rowley writes: > I might be missing something here, but if you're changing the > signature of output_simple_statement(), wouldn't you also need to > change all calls to it too? ... including the ones in preproc.y? preproc.y is a generated file, not something that lives in git.

Re: pgsql: Change error handling of out of scope variables in ecpg.

2019-01-30 Thread David Rowley
On Thu, 31 Jan 2019 at 02:38, Michael Meskes wrote: > Change error handling of out of scope variables in ecpg. > > The function called can result in an out of memory error that subsequently was > disregarded. Instead it should set the appropriate SQL error variables and be > checked by whatever wh

pgsql: Change error handling of out of scope variables in ecpg.

2019-01-30 Thread Michael Meskes
Change error handling of out of scope variables in ecpg. The function called can result in an out of memory error that subsequently was disregarded. Instead it should set the appropriate SQL error variables and be checked by whatever whenever statement is defined. Branch -- master Details --