BUG #6707: ERROR: could not open relation with OID

From: lifeair(at)gmail(dot)com
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #6707: ERROR: could not open relation with OID
Date: 2012-06-26 15:39:20
Message-ID: E1SjXrM-000119-Vk@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 6707
Logged by: LiFeAiR
Email address: lifeair(at)gmail(dot)com
PostgreSQL version: 9.1.4
Operating system: FREE BSD
Description:

CREATE OR REPLACE FUNCTION test() RETURNS integer AS
$BODY$
DECLARE
_r RECORD;
BEGIN
CREATE TEMP TABLE test(id int);
_r := ROW(NULL)::test;
_r:=NULL;
DROP TABLE test CASCADE;
RETURN 1;
END;
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100;

select test();

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Merlin Moncure 2012-06-26 16:25:11 Re: server crash with "process 22821 releasing ProcSignal slot 32, but it contains 0"
Previous Message Merlin Moncure 2012-06-26 14:19:34 Re: server crash with "process 22821 releasing ProcSignal slot 32, but it contains 0"