Обсуждение: pgsql/src/backend/commands vacuum.c

Поиск
Список
Период
Сортировка

pgsql/src/backend/commands vacuum.c

От
Tom Lane
Дата:
CVSROOT:    /home/projects/pgsql/cvsroot
Module name:    pgsql
Changes by:    tgl@hub.org    01/07/11 14:38:08

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

Log message:
    Remove direct calls of index_insert(), instead use ExecInsertIndexTuples().
    This makes VACUUM work properly with partial indexes, and avoids memory
    leakage with functional indexes.  Also, suppress complaint about fewer
    index tuples than heap tuples when the index is a partial index.
    From Martijn van Oosterhout.