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
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
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
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