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

From Tatsuo Ishii
Subject Re: [HACKERS] temp table oddness?
Date
Msg-id 199909050224.LAA07554@ext16.sra.co.jp
Whole thread Raw
In response to Re: [HACKERS] temp table oddness?  (Bruce Momjian <maillist@candle.pha.pa.us>)
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.

Now problems I was complaining have gone. Thanks!
---
Tatsuo Ishii


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] temp table oddness?u
Next
From: Tatsuo Ishii
Date:
Subject: Re: [HACKERS] md.c is feeling much better now, thank you