planner: Log warnings when agg function can not be pushdown in explain statement#25553
Conversation
|
Please follow PR Title Format:
Or if the count of mainly changed packages are more than 3, use
|
…_pushdown_warnings
…_pushdown_warnings
…_pushdown_warnings
|
/label needs-cherry-pick-5.0 |
|
/label needs-cherry-pick-5.1 |
|
/run-all-tests |
| tk.MustExec("explain select max(date_add(value, interval 1 day)) from show_warnings_expr_pushdown group by a") | ||
| c.Assert(tk.Se.GetSessionVars().StmtCtx.WarningCount(), Equals, uint16(2)) |
There was a problem hiding this comment.
what if the unsupported function occur in group by?
There was a problem hiding this comment.
Add tests about groupBy and distinct.
|
@fzhedu: Please use GitHub review feature instead of For the reason we drop support to the commands, see also this page. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
|
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. DetailsReviewer can indicate their review by submitting an approval review. |
|
/merge |
|
This pull request has been accepted and is ready to merge. DetailsCommit hash: 23e3fcc |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
|
cherry pick to release-5.0 in PR #25736 |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
|
cherry pick to release-5.1 in PR #25737 |
What problem does this PR solve?
Issue Number: close #xxx
Problem Summary:
After #22713, if an expression can not be pushdown to storage layer, it will log a warning if current sql is an explain statement, however, for aggregation function
agg(expr)if it can not be pushdown to storage layer becuaseexpris not supported, no warning is logged because current implementation callAggFuncToPBExprdirectly to check if the agg function can be pushed to storage layer.What is changed and how it works?
Proposal: xxx
What's Changed:
Refine
CheckAggCanPushCopand log warnings when agg function can not be pushdown in explain statement.How it Works:
Related changes
pingcap/docs/pingcap/docs-cn:Check List
Tests
Side effects
Release note