pgsql: Fix pg_depend entry to AMs after ALTER TABLE .. SET ACCESS METHO

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Fix pg_depend entry to AMs after ALTER TABLE .. SET ACCESS METHO
Дата
Msg-id E1qF0Sk-00162B-1n@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix pg_depend entry to AMs after ALTER TABLE .. SET ACCESS METHOD

ALTER TABLE .. SET ACCESS METHOD was not registering a dependency to the
new access method with the relation altered in its rewrite phase, making
possible the drop of an access method even if there are relations that
depend on it.  During the rewrite, a temporary relation is created to
build the new relation files before swapping the new and old files, and,
while the temporary relation was registering a correct dependency to the
new AM, the old relation did not do that.  A dependency on the access
method is added when the relation files are swapped, which is the point
where pg_class is updated.

Materialized views and tables use the same code path, hence both were
impacted.

Backpatch down to 15, where this command has been introduced.

Reported-by: Alexander Lakhin
Reviewed-by: Nathan Bossart, Andres Freund
Discussion: https://postgr.es/m/18000-9145c25b1af475ca@postgresql.org
Backpatch-through: 15

Branch
------
REL_15_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/93401ec02f40dd85dd98147b883b158ebf5648c9

Modified Files
--------------
src/backend/commands/cluster.c          | 29 +++++++++++++++++++++++++++++
src/test/regress/expected/create_am.out | 29 +++++++++++++++++++++++++++++
src/test/regress/sql/create_am.sql      | 18 ++++++++++++++++++
3 files changed, 76 insertions(+)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: meson: Remove redundant return code check
Следующее
От: noreply@postgresql.org
Дата:
Сообщение: pgsql: Branch REL_16_STABLE was created