Re: BUG #5032: unexpected syntax error for plpgsql function returns table - Mailing list pgsql-bugs

From Keith Cascio
Subject Re: BUG #5032: unexpected syntax error for plpgsql function returns table
Date
Msg-id alpine.GSO.2.00.0909022142540.2576@kiwi.cs.ucla.edu
Whole thread Raw
In response to Re: BUG #5032: unexpected syntax error for plpgsql function returns table  (Pavel Stehule <pavel.stehule@gmail.com>)
Responses Re: BUG #5032: unexpected syntax error for plpgsql function returns table  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: BUG #5032: unexpected syntax error for plpgsql function returns table  (Merlin Moncure <mmoncure@gmail.com>)
List pgsql-bugs
Pavel,

On Thu, 3 Sep 2009, Pavel Stehule wrote:

> it's not bug - PostgreSQL doesn't support parameter placeholder on this
> position. Use dynamic query instead - plpgsql statement EXECUTE.

Thank you for your reply.  I appreciate your suggestion, but it still seems like
a bug to me.  Please comment on the fact that the following code succeeds:

create function reproduce() returns table(foo integer) language plpgsql as
'begin return query select 1 bar; end;';

Output in psql is:
CREATE FUNCTION

Why should it succeed with "bar" but not with "foo"?

Thanks,
Keith


> 2009/9/3 Keith Cascio <keith@cs.ucla.edu>:
> > create function reproduce() returns table(foo integer) language plpgsql as
> > 'begin return query select 1 foo; end;';

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #5031: DATE_TRUNC returns the wrong value when specifying MONTH
Next
From: Mark Douglas
Date:
Subject: Re: BUG #5031: DATE_TRUNC returns the wrong value when specifying MONTH