Skip to content
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
wants to merge 15 commits into
base: feature/partition-table
Choose a base branch
from

Conversation

Hamkua
Copy link
Contributor

@Hamkua Hamkua commented Dec 6, 2024

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.

…ction expression and the WHERE clause uses the original column
@Hamkua Hamkua self-assigned this Dec 6, 2024
@Hamkua Hamkua requested a review from beyondykk9 as a code owner December 6, 2024 06:36
@Hamkua Hamkua marked this pull request as draft December 6, 2024 06:37
@Hamkua Hamkua changed the base branch from develop to feature/partition-table December 19, 2024 07:24
@@ -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))
Copy link
Contributor Author

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));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant