pgsql: Disallow CLUSTER using an invalid index (that is, one left over

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Disallow CLUSTER using an invalid index (that is, one left over
Date: 2007-09-29 18:05:20
Message-ID: 20070929180520.57B7C753E4C@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Disallow CLUSTER using an invalid index (that is, one left over from a failed
CREATE INDEX CONCURRENTLY). Such an index might not have entries for every
heap row and thus clustering with it would result in silent data loss.
The scenario requires a pretty foolish DBA, but still ...

Modified Files:
--------------
pgsql/src/backend/commands:
cluster.c (r1.163 -> r1.164)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/cluster.c?r1=1.163&r2=1.164)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2007-09-29 18:05:28 pgsql: Disallow CLUSTER using an invalid index (that is, one left over
Previous Message Tom Lane 2007-09-29 17:18:58 pgsql: Improve consistency of the error messages generated when you try