-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
planner: don't handle collation in in expression
if it contains a row function.
#31274
Conversation
[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. Reviewer can indicate their review by submitting an approval review. |
/run-common-test |
Code Coverage Details: https://codecov.io/github/pingcap/tidb/commit/77a582e600dcc7131902544f5cb9b08c72040d35 |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 0816d785212cd7e64d9917af28b04e1ef11577ba
|
/hold |
443f06e
to
65a0c8e
Compare
2be46cc
to
b5a1923
Compare
/unhold |
/run-all-tests |
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.
LGTM
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 6f3a78b
|
/run-check_dev_2 |
/run-unit-test |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
cherry pick to release-5.4 in PR #31398 |
Signed-off-by: wjhuang2016 huangwenjun1997@gmail.com
What problem does this PR solve?
Issue Number: close #31273 and close #31300
Problem Summary:
It's vary hard to derive and set the best collation for
in expression
if it contains a row function.For example: ("a", ("c", ("d", "e"))) in ("a", ("c" collate bin, ("d", "e" collate general)))
We don't have a good idea to set the collation. So We decide that we don't handle collation in
in expression
if it contains a row function.What is changed and how it works?
Don't handle collation in
in expression
if it contains a row function.If' acceptable and users rarely depend on it.
Check List
Tests
Side effects
Documentation
Release note