missing support of named convention for procedures - Mailing list pgsql-hackers

From Pavel Stehule
Subject missing support of named convention for procedures
Date
Msg-id CAFj8pRCgQ5_O4YL4ZKC5=6Oi7DW_q4xB7==_iN2yRKq7+1Tv9Q@mail.gmail.com
Whole thread Raw
Responses Re: missing support of named convention for procedures  (Pavel Stehule <pavel.stehule@gmail.com>)
List pgsql-hackers
Hi

create or replace procedure proc2(in a int, in b int)
as $$
begin
  a := a * 10;
  b := b * 10;
end;
$$ language plpgsql;

postgres=# call proc2(a => 10,b => 20);
ERROR:  XX000: unrecognized node type: 107
LOCATION:  ExecInitExprRec, execExpr.c:2114

Regards

Pavel

pgsql-hackers by date:

Previous
From: Chapman Flack
Date:
Subject: Re: worker_spi.naptime in worker_spi example
Next
From: Tom Lane
Date:
Subject: Re: INOUT parameters in procedures