VACUUM of temp tables

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: PostgreSQL-development <pgsql-hackers(at)postgreSQL(dot)org>
Subject: VACUUM of temp tables
Date: 2000-04-06 18:02:19
Message-ID: 200004061802.OAA00453@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Fixed:

test=> CREATE TEMPORARY TABLE test(x int);
CREATE
test=> VACUUM test;
VACUUM

Look at the comment I found in the code:

/*
* we could use the cache here, but it is clearer to use scankeys
* for both vacuum cases, bjm 2000/01/19
*/

Seems I had already looked at this as an issue. I had not realized
this was an issue for temp tables. Fixed now.

--
Bruce Momjian | http://www.op.net/~candle
pgman(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

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2000-04-06 18:05:55 Re: pg_dumplo, thanks :) (fwd)
Previous Message Bruce Momjian 2000-04-06 17:55:16 Re: Vacuuming temporary tables