pgsql: Fix RANGE partition pruning with multiple boolean partitionkeys - Mailing list pgsql-committers

From David Rowley
Subject pgsql: Fix RANGE partition pruning with multiple boolean partitionkeys
Date
Msg-id E1hlpiF-0000ZE-4v@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix RANGE partition pruning with multiple boolean partition keys

match_clause_to_partition_key incorrectly would return
PARTCLAUSE_UNSUPPORTED if a bool qual could not be matched to the current
partition key.  This was a problem, as it causes the calling function to
discard the qual and not try to match it to any other partition key.  If
there was another partition key which did match this qual, then the qual
would not be checked again and we could fail to prune some partitions.

The worst this could do was to cause partitions not to be pruned when they
could have been, so there was no danger of incorrect query results here.

Fix this by changing match_boolean_partition_clause to have it return a
PartClauseMatchStatus rather than a boolean value.  This allows it to
communicate if the qual is unsupported or if it just does not match this
particular partition key, previously these two cases were treated the
same.  Now, if match_clause_to_partition_key is unable to match the qual
to any other qual type then we can simply return the value from the
match_boolean_partition_clause call so that the calling function properly
treats the qual as either unmatched or unsupported.

Reported-by: Rares Salcudean
Reviewed-by: Amit Langote
Backpatch-through: 11 where partition pruning was introduced
Discussion: https://postgr.es/m/CAHp_FN2xwEznH6oyS0hNTuUUZKp5PvegcVv=Co6nBXJ+mC7Y5w@mail.gmail.com

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/757f1baa8c13ffe7abd7b0f49f787a1c007cdf89

Modified Files
--------------
src/backend/partitioning/partprune.c          | 50 ++++++++++++++++++++-------
src/test/regress/expected/partition_prune.out | 16 ++++++++-
src/test/regress/sql/partition_prune.sql      | 11 +++++-
3 files changed, 62 insertions(+), 15 deletions(-)


pgsql-committers by date:

Previous
From: Alexander Korotkov
Date:
Subject: pgsql: Fixes for jsonpath filter expression elements table in docs
Next
From: David Rowley
Date:
Subject: pgsql: Fix RANGE partition pruning with multiple boolean partitionkeys