pgsql-server/src/backend/catalog index.c - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql-server/src/backend/catalog index.c
Date
Msg-id 20020922230358.C6CE7475F26@postgresql.org
Whole thread Raw
List pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@postgresql.org    02/09/22 19:03:58

Modified files:
    src/backend/catalog: index.c

Log message:
    In UpdateStats(), don't bother to update the pg_class row if it already
    contains the correct statistics.  This is a partial solution for the
    problem of allowing concurrent CREATE INDEX commands: unless they commit
    at nearly the same instant, the second one will see the first one's
    pg_class updates as committed, and won't try to update again, thus
    avoiding the 'tuple concurrently updated' failure.


pgsql-committers by date:

Previous
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql-server/src/pl/plpgsql/src gram.y
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql-server/src backend/catalog/index.c backe ...