PL/pgSQL bug? - Mailing list pgsql-hackers

From Tatsuo Ishii
Subject PL/pgSQL bug?
Date
Msg-id 20010930211302X.t-ishii@sra.co.jp
Whole thread Raw
Responses Re: PL/pgSQL bug?  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: PL/pgSQL bug?  (Jan Wieck <JanWieck@Yahoo.com>)
List pgsql-hackers
In the attached script, second call to test1() causes error:

select test1();test1 
-------    0
(1 row)

select test1();
psql:/home/t-ishii/tmp/aaa.sql:13: NOTICE:  Error occurred while executing PL/pgSQL function test1
psql:/home/t-ishii/tmp/aaa.sql:13: NOTICE:  line 5 at select into variables
psql:/home/t-ishii/tmp/aaa.sql:13: ERROR:  Relation 422543 does not exist

Maybe PL/pgSQL cache problem?
--
Tatsuo Ishii
----------------------------------------------------------------------
drop function test1();
create function test1() returns int as '
declare
rec RECORD;
begin
create temp table temp_aaa (i int);
select into rec * from temp_aaa;
drop table temp_aaa;
return 0;
end;
'language 'plpgsql';
select test1();
select test1();


pgsql-hackers by date:

Previous
From: Gavin Sherry
Date:
Subject: Re: Pre-forking backend
Next
From: Doug McNaught
Date:
Subject: Re: Pre-forking backend