Temp Tables: Trying to delete a reldesc...

From: Kristofer Munn <kmunn(at)munn(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Temp Tables: Trying to delete a reldesc...
Date: 2000-01-16 06:57:41
Message-ID: Pine.LNX.4.04.10001160153450.27063-100000@munn.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi all. Running 6.5.3 on Intel Linux. I think problems related to this
have been reported in the past but the mailing list archives are running
incredibly slowly lately so I'm not *absolutely* sure:

[PostgreSQL 6.5.3 on i686-pc-linux-gnu, compiled by gcc egcs-2.91.66]

mail=> begin transaction ;
BEGIN
mail=> create temp table tbl1 ( x int4 ) ;
CREATE
mail=> drop table tbl1 ;
DROP
mail=> commit transaction ;
NOTICE: trying to delete a reldesc that does not exist.
NOTICE: trying to delete a reldesc that does not exist.
END
mail=>

A two-parter:

(1) For myself: Is this at all dangerous/problematic for my database?

(2) For Postgres: Is this addressed in the latest 7.0 source or on the
TODO list?

Thanks...

- K

Kristofer Munn * KMI * 973-509-9414 * AIM KrMunn * http://www.munn.com/

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2000-01-16 07:09:44 Re: [HACKERS] Temp Tables: Trying to delete a reldesc...
Previous Message Bruce Momjian 2000-01-16 06:44:37 Re: [HACKERS] I think we need an explicit parsetree node for CAST