pgsql: CLUSTER specified the wrong namespace when renaming toast tables

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: CLUSTER specified the wrong namespace when renaming toast tables
Date: 2010-02-02 19:12:29
Message-ID: 20100202191229.39F337541B9@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
CLUSTER specified the wrong namespace when renaming toast tables of temporary
relations (they don't live in pg_toast). This caused an Assert failure in
assert-enabled builds. So far as I can see, in a non-assert build it would
only have messed up the checks for conflicting names, so a failure would be
quite improbable but perhaps not impossible.

Modified Files:
--------------
pgsql/src/backend/commands:
cluster.c (r1.195 -> r1.196)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/cluster.c?r1=1.195&r2=1.196)
pgsql/src/test/regress/expected:
cluster.out (r1.20 -> r1.21)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/cluster.out?r1=1.20&r2=1.21)
pgsql/src/test/regress/sql:
cluster.sql (r1.12 -> r1.13)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/sql/cluster.sql?r1=1.12&r2=1.13)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2010-02-02 19:12:34 pgsql: CLUSTER specified the wrong namespace when renaming toast tables
Previous Message Magnus Hagander 2010-02-02 19:10:26 Re: [COMMITTERS] pgsql: Define INADDR_NONE on Solaris when it's missing.