pgsql: Fix concurrent indexing operations with temporary tables

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Fix concurrent indexing operations with temporary tables
Дата
Msg-id E1iu4EM-0007Cx-Mc@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix concurrent indexing operations with temporary tables

Attempting to use CREATE INDEX, DROP INDEX or REINDEX with CONCURRENTLY
on a temporary relation with ON COMMIT actions triggered unexpected
errors because those operations use multiple transactions internally to
complete their work.  Here is for example one confusing error when using
ON COMMIT DELETE ROWS:
ERROR:  index "foo" already contains data

Issues related to temporary relations and concurrent indexing are fixed
in this commit by enforcing the non-concurrent path to be taken for
temporary relations even if using CONCURRENTLY, transparently to the
user.  Using a non-concurrent path does not matter in practice as locks
cannot be taken on a temporary relation by a session different than the
one owning the relation, and the non-concurrent operation is more
effective.

The problem exists with REINDEX since v12 with the introduction of
CONCURRENTLY, and with CREATE/DROP INDEX since CONCURRENTLY exists for
those commands.  In all supported versions, this caused only confusing
error messages to be generated.  Note that with REINDEX, it was also
possible to issue a REINDEX CONCURRENTLY for a temporary relation owned
by a different session, leading to a server crash.

The idea to enforce transparently the non-concurrent code path for
temporary relations comes originally from Andres Freund.

Reported-by: Manuel Rigger
Author: Michael Paquier, Heikki Linnakangas
Reviewed-by: Andres Freund, Álvaro Herrera, Heikki Linnakangas
Discussion: https://postgr.es/m/CA+u7OA6gP7YAeCguyseusYcc=uR8+ypjCcgDDCTzjQ+k6S9ksQ@mail.gmail.com
Backpatch-through: 9.4

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/ef33edeb58350afde74a9b28e34efce0e3119063

Modified Files
--------------
doc/src/sgml/ref/create_index.sgml         |  5 +++++
doc/src/sgml/ref/drop_index.sgml           |  5 +++++
src/backend/catalog/index.c                |  9 +++++++++
src/backend/commands/indexcmds.c           | 27 ++++++++++++++++++++-------
src/backend/commands/tablecmds.c           | 18 +++++++++++++++++-
src/test/regress/expected/create_index.out | 25 +++++++++++++++++++++++++
src/test/regress/sql/create_index.sql      | 25 +++++++++++++++++++++++++
7 files changed, 106 insertions(+), 8 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Clarify behavior of adding and altering a column in same ALTER c
Следующее
От: Amit Kapila
Дата:
Сообщение: pgsql: Fix the computation of max dead tuples during the vacuum.