pgsql-server/src/backend/commands tablecmds.c

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql-server/src/backend/commands tablecmds.c
Date: 2003-10-13 20:02:52
Message-ID: 20031013200252.4E03CD1B515@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: tgl(at)svr1(dot)postgresql(dot)org 03/10/13 17:02:52

Modified files:
src/backend/commands: tablecmds.c

Log message:
Adjust setRelhassubclassInRelation() to not perform actual heap_update
when the pg_class.relhassubclass value is already correct. This should
avoid most cases of the 'tuple concurrently updated' problem that
Robert Creager recently complained about. Also remove a bunch of dead
code in StoreCatalogInheritance() --- it was still computing the complete
list of direct and indirect inheritance ancestors, though that list has
not been needed since we got rid of the pg_ipl catalog.

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2003-10-13 21:06:44 pgsql-server/src/bin/initdb initdb.sh
Previous Message Bruce Momjian 2003-10-12 23:19:21 pgsql-server/src/backend commands/tablecmds.c ...