pgsql-server/src/backend/catalog index.c

Поиск
Список
Период
Сортировка
От tgl@postgresql.org (Tom Lane)
Тема pgsql-server/src/backend/catalog index.c
Дата
Msg-id 20020922230358.C6CE7475F26@postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql-server/src/pl/plpgsql/src gram.y
Следующее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql-server/src backend/catalog/index.c backe ...