From: | Matt Miller <mattm(at)epx(dot)com> |
---|---|
To: | Tony Caduto <tony_caduto(at)amsoftwaredesign(dot)com> |
Cc: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, PG Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: 8.1 and syntax checking at create time |
Date: | 2005-08-31 18:28:07 |
Message-ID: | 1125512887.3640.12.camel@dbamm01-linux |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Wed, 2005-08-31 at 13:13 -0500, Tony Caduto wrote:
> the function below also raises no errors at create, but at run time it does.
> ...
> CREATE or REPLACE FUNCTION public.test_func9(out firstname varchar,out
> lastname varchar)
> RETURNS SETOF pg_catalog.record AS
> $BODY$
> Declare
> row record44;
> BEGIN
> asfdfdfdfafdsfsdfsdf
> sdf bla bla
> sdf yada yada
> s
> df
> sd
> fsd
> END;
> $BODY$
> LANGUAGE 'plpgsql' VOLATILE;
When I execute this CREATE statement I get:
ERROR: type "record44" does not exist
CONTEXT: compile of PL/pgSQL function "test_func9" near line 2
So, it does seem to be working as advertised.
I'm running HEAD as of a few hours ago.
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2005-08-31 18:36:56 | Re: 8.1 and syntax checking at create time |
Previous Message | Tom Lane | 2005-08-31 18:25:54 | Re: On hardcoded type aliases and typmod for user types |