CALL stmt, ERROR: unrecognized node type: 113 bug

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: CALL stmt, ERROR: unrecognized node type: 113 bug
Date: 2018-02-01 16:33:54
Message-ID: CAFj8pRDxOwPPzpA8i+AQeDQFj7bhVw-dR2==rfWZ3zMGkm568Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi

I am playing with procedures little bit

I found few bugs

create procedure test(a int)
as $$
begin
raise notice '>>>%<<<', a;
end;
$$ language plpgsql;

call test(10); -- ok

postgres=# call test((select 10));
ERROR: unrecognized node type: 113

postgres=# \sf test
ERROR: cache lookup failed for type 0

Regards

Pavel

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Magnus Hagander 2018-02-01 16:35:59 Re: git instructions
Previous Message Chapman Flack 2018-02-01 16:20:45 Re: git instructions