-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CBRD-25708] Enable partition pruning when the partition key is a function expression and the WHERE clause uses the original column #5682
Draft
Hamkua
wants to merge
15
commits into
CUBRID:feature/partition-table
Choose a base branch
from
Hamkua:CBRD-25708
base: feature/partition-table
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
+327
−1
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ction expression and the WHERE clause uses the original column
…h the column type being compared, instead of relying on the function’s return type
…ED_EXPR containing ALL/SOME
Hamkua
commented
Dec 12, 2024
…key expression used in ALSM
…constant values in range partition table
Hamkua
commented
Dec 23, 2024
@@ -1924,6 +1988,17 @@ partition_match_pred_expr (PRUNING_CONTEXT * pinfo, const PRED_EXPR * pr, PRUNIN | |||
{ | |||
status = partition_prune (pinfo, left, op, pruned); | |||
} | |||
else if (partition_supports_pruning_op_for_function (op, part_expr)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
파티션 키가 아닌 컬럼을 포함한 집합을 조건절에서 비교하는 경우, 파티션 프루닝이 불가능한 문제가 있습니다.
예:
drop table if exists t1;
create table t1(c1 int, c2 int) partition by range(c1) (
partition p1 values less than (10),
partition p2 values less than (20),
partition p3 values less than (30),
partition p4 values less than (40)
);
insert into t1 values (3, 1), (6, 2), (9, 3), (12, 4), (15, 5), (18, 6), (21, 7), (24, 8), (27, 9), (30, 10);
/* c1에 해당하는 5, 10이 상수 값임에도, 파티션 프루닝 불가능 */
select /*+ recompile */ * from t1 where (c1, c2) in ((5, 1),(10, 2));
…ite IN conditions
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
http://jira.cubrid.org/browse/CBRD-25708
In CUBRID, when an expression is specified as the partition key, partition pruning can only occur if the same expression is compared to a constant value in the query's WHERE clause.
However, if the original column included in the expression is compared with a constant value in the condition, partition pruning does not work.
Therefore, this feature has been added to support partition pruning even when the original column in the expression is compared with a constant value in the WHERE clause.
When comparing the PRED_EXPR of type EVAL_TERM in where_pred and where_key, the types of the original column in the partition key expression and the constant value are checked for compatibility.
If they are compatible, the original column in the expression is replaced with the constant value, allowing the partition key value to be computed accordingly.