Re: [HACKERS] Another TEMP table trick

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: maillist(at)candle(dot)pha(dot)pa(dot)us (Bruce Momjian)
Cc: hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Another TEMP table trick
Date: 1999-01-28 23:32:01
Message-ID: 199901282332.SAA12890@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

I don't know how I posted this, but it is wrong. I have added the
missing lines.

> test=> create table test (x int);
> CREATE
> test=> insert into test values (1);
> INSERT
> test=> create temp table test (x int); <--
> CREATE <--
> test=> insert into test values (2);
> INSERT 19787 1
> test=> select * from test;
> x
> -
> 2
> (1 row)
>
> test=> drop table test;
> DROP
> test=> select * from test;
> x
> -
> 1
> (1 row)
>
> test=> drop table test;
> DROP
>
> --
> Bruce Momjian | http://www.op.net/~candle
> maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
> + If your life is a hard drive, | 830 Blythe Avenue
> + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
>
>

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

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Patrick Verdon 1999-01-28 23:40:29 Postmaster dies with many child processes (spinlock/semget failed)
Previous Message Bruce Momjian 1999-01-28 23:18:45 Another TEMP table trick