Re: [HACKERS] temp table oddness? - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: [HACKERS] temp table oddness?
Date
Msg-id 199909042214.SAA17877@candle.pha.pa.us
Whole thread Raw
In response to temp table oddness?  (Tatsuo Ishii <t-ishii@sra.co.jp>)
Responses Re: [HACKERS] temp table oddness?  (Bruce Momjian <maillist@candle.pha.pa.us>)
Re: [HACKERS] temp table oddness?  (Tatsuo Ishii <t-ishii@sra.co.jp>)
List pgsql-hackers
> I found weird behavior with temp tables.
> 
> test=> create table u1(i int);
> CREATE
> test=> insert into u1 values(1);
> INSERT 3408201 1
> test=> insert into u1 values(1);
> INSERT 3408202 1
> test=> create temp table u1(i int primary key);
> NOTICE:  CREATE TABLE/PRIMARY KEY will create implicit index 'u1_pkey' for table 'u1'
> NOTICE:  trying to delete a reldesc that does not exist.
> NOTICE:  trying to delete a reldesc that does not exist.
> CREATE
> 
> Are these notices normal?

OK, looks fixed.  Tatsuo, please test current cvs tree.  Thanks.

--  Bruce Momjian                        |  http://www.op.net/~candle maillist@candle.pha.pa.us            |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [HACKERS] temp table oddness?
Next
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] temp table oddness?