Re: SET WITHOUT OIDS and VACUUM badness?

From: Dennis Bjorklund <db(at)zigo(dot)dhs(dot)org>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: SET WITHOUT OIDS and VACUUM badness?
Date: 2004-01-21 10:03:02
Message-ID: Pine.LNX.4.44.0401211057290.17713-100000@zigo.dhs.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Gavin Sherry 2004-01-21 10:54:13 Re: SET WITHOUT OIDS and VACUUM badness?
Previous Message Christopher Kings-Lynne 2004-01-21 08:08:07 SET WITHOUT OIDS and VACUUM badness?