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 14 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
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