Temporary table weirdness - Mailing list pgsql-sql

From Joseph Barillari
Subject Temporary table weirdness
Date
Msg-id m3elgzni0f.fsf@washer.barillari.org
Whole thread Raw
Responses Re: Temporary table weirdness  (Bruce Momjian <pgman@candle.pha.pa.us>)
Re: Temporary table weirdness  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-sql
Hi,

I have a function that creates and destroys temporary tables in the
course of its work, and have run into trouble if the function
is executed more than once during a database session. A small
proof-of-concept is attached below:

cal=> create or replace function frob() returns integer as 'begin create temporary table foo(bar INT); insert into foo
(bar)values (1); drop table foo; return 1; end;' language 'plpgsql'; 
CREATE

(seems pretty standard)

cal=> select frob();frob
------   1
(1 row)

(OK so far...)

cal=> select frob();
NOTICE:  Error occurred while executing PL/pgSQL function frob
NOTICE:  line 1 at SQL statement
ERROR:  Relation 68141 does not exist

On the second call, PostgreSQL chokes. Any suggestions as to why
would be appreciated.

Oddly enough, redefining the function eliminates the error for the
next function call.

Thanks,

Joe

pgsql-sql by date:

Previous
From: "Josh Berkus"
Date:
Subject: Re: IN, EXISTS or ANY?
Next
From: Christoph Haller
Date:
Subject: view on system tables upgrade II