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

Reply via email to