pgsql: Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS.

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS.
Date: 2005-02-06 20:19:43
Message-ID: 20050206201943.E1E308B9EA5@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS. Turns out
there are corner cases involving dropping toasted columns in which the
previous coding would fail, too: the new version of the table might not
have any TOAST table, but we'd still propagate possibly-wide values of
dropped columns forward.

Tags:
----
REL7_4_STABLE

Modified Files:
--------------
pgsql/src/backend/commands:
cluster.c (r1.116.2.1 -> r1.116.2.2)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/cluster.c.diff?r1=1.116.2.1&r2=1.116.2.2)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2005-02-06 20:59:32 pgsql: Document array behavior for out-of-range subscripts.
Previous Message Tom Lane 2005-02-06 20:19:25 pgsql: Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS.