pgsql: Fix ALTER TABLE .. ATTACH PARTITION ... DEFAULT

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: Fix ALTER TABLE .. ATTACH PARTITION ... DEFAULT
Дата
Msg-id E1f6KYP-0008RE-CS@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix ALTER TABLE .. ATTACH PARTITION ... DEFAULT

If the table being attached contained values that contradict the default
partition's partition constraint, it would fail to complain, because
CommandCounterIncrement changes in 4dba331cb3dc coupled with some bogus
coding in the existing ValidatePartitionConstraints prevented the
partition constraint from being validated after all -- or rather, it
caused to constraint to become an empty one, always succeeding.

Fix by not re-reading the OID of the default partition in
ATExecAttachPartition.  To forestall similar problems, revise the
existing code:
* rename routine from ValidatePartitionConstraints() to
  QueuePartitionConstraintValidation, to better represent what it
  actually does.
* add an Assert() to make sure that when queueing a constraint for a
  partition we're not overwriting a constraint previously queued.
* add an Assert() that we don't try to invoke the special-purpose
  validation of the default partition when attaching the default
  partition itself.

While at it, change some loops to obtain partition OIDs from
partdesc->oids rather than find_all_inheritors; reduce the lock level
of partitions being scanned from AccessExclusiveLock to ShareLock;
rewrite QueuePartitionConstraintValidation in a recursive fashion rather
than repetitive.

Author: Álvaro Herrera.  Tests written by Amit Langote
Reported-by: Rushabh Lathia
Diagnosed-by: Kyotaro HORIGUCHI, who also provided the initial fix.
Reviewed-by: Kyotaro HORIGUCHI, Amit Langote, Jeevan Ladhe
Discussion: https://postgr.es/m/CAGPqQf0W+v-Ci_qNV_5R3A=Z9LsK4+jO7LzgddRncpp_rrnJqQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/72cf7f310c0729a331f321fad39835ac886603dc

Modified Files
--------------
src/backend/commands/tablecmds.c          | 170 +++++++++++++-----------------
src/test/regress/expected/alter_table.out |  16 +++
src/test/regress/sql/alter_table.sql      |  18 ++++
3 files changed, 106 insertions(+), 98 deletions(-)


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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: pgsql: Fix interference between cavering indexes and partitioned tables
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Make local copy of client hostnames in backend status array.