Re: SET WITHOUT OIDS and VACUUM badness? - Mailing list pgsql-hackers

From Dennis Bjorklund
Subject Re: SET WITHOUT OIDS and VACUUM badness?
Date
Msg-id Pine.LNX.4.44.0401211057290.17713-100000@zigo.dhs.org
Whole thread Raw
In response to SET WITHOUT OIDS and VACUUM badness?  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
List pgsql-hackers
On Wed, 21 Jan 2004, Christopher Kings-Lynne wrote:

> This seems to be reproducible...

Here is a smaller example that show the problem:

CREATE TABLE foo (a INT);

BEGIN; ALTER TABLE foo SET WITHOUT OIDS; INSERT INTO foo values (5);
ROLLBACK;

VACUUM FULL foo;

It's easy to guess what is causing this, but I'll leave that to the person 
that wants to fix it.

-- 
/Dennis Björklund



pgsql-hackers by date:

Previous
From: Christopher Kings-Lynne
Date:
Subject: SET WITHOUT OIDS and VACUUM badness?
Next
From: Gavin Sherry
Date:
Subject: Re: SET WITHOUT OIDS and VACUUM badness?