pgsql: Fix runtime partition pruning for HASH partitioned tables

Поиск
Список
Период
Сортировка
От David Rowley
Тема pgsql: Fix runtime partition pruning for HASH partitioned tables
Дата
Msg-id E1qquam-000Aev-Tq@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix runtime partition pruning for HASH partitioned tables

This could only affect HASH partitioned tables with at least 2 partition
key columns.

If partition pruning was delayed until execution and the query contained
an IS NULL qual on one of the partitioned keys, and some subsequent
partitioned key was being compared to a non-Const, then this could result
in a crash due to the incorrect keyno being used to calculate the
stateidx for the expression evaluation code.

Here we fix this by properly skipping partitioned keys which have a
nullkey set.  Effectively, this must be the same as what's going on
inside perform_pruning_base_step().

Sergei Glukhov also provided a patch, but that's not what's being used
here.

Reported-by: Sergei Glukhov
Reviewed-by: tender wang, Sergei Glukhov
Discussion: https://postgr.es/m/d05b26fa-af54-27e1-f693-6c31590802fa@postgrespro.ru
Backpatch-through: 11, where runtime partition pruning was added.

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/3cc0c25172b201f51dbd8cf2acfd1bfaff66e0d2

Modified Files
--------------
src/backend/executor/execPartition.c          | 29 ++++++++++++++++-----------
src/test/regress/expected/partition_prune.out | 24 +++++++++++++++++++++-
src/test/regress/sql/partition_prune.sql      | 24 ++++++++++++++++++++--
3 files changed, 62 insertions(+), 15 deletions(-)


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

Предыдущее
От: David Rowley
Дата:
Сообщение: pgsql: Fix runtime partition pruning for HASH partitioned tables
Следующее
От: David Rowley
Дата:
Сообщение: pgsql: Fix runtime partition pruning for HASH partitioned tables