Re: repeated procedure call error

2018-11-09 Thread Tom Lane
Pavel Stehule writes: > The problem is unsaved plan - probably there should be big PG_TRY block. Yeah, agreed. Done -- thanks for the report! regards, tom lane

Re: repeated procedure call error

2018-11-09 Thread Pavel Stehule
pá 9. 11. 2018 v 20:07 odesílatel Pavel Stehule napsal: > > > pá 9. 11. 2018 v 20:05 odesílatel Pavel Stehule > napsal: > >> Hi >> >> There are some broken. I tried to fix plpgsql_check regression tests and >> I found new error. >> >> Looks it is fresh regression. >> >> CREATE OR REPLACE PROCEDU

Re: repeated procedure call error

2018-11-09 Thread Pavel Stehule
pá 9. 11. 2018 v 20:05 odesílatel Pavel Stehule napsal: > Hi > > There are some broken. I tried to fix plpgsql_check regression tests and I > found new error. > > Looks it is fresh regression. > > CREATE OR REPLACE PROCEDURE public.proc(a integer, INOUT b integer, c > integer) > LANGUAGE plpgsql

repeated procedure call error

2018-11-09 Thread Pavel Stehule
Hi There are some broken. I tried to fix plpgsql_check regression tests and I found new error. Looks it is fresh regression. CREATE OR REPLACE PROCEDURE public.proc(a integer, INOUT b integer, c integer) LANGUAGE plpgsql AS $procedure$ begin b := a + c + c; end; $procedure$ CREATE OR REPLACE