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

Fix the bug that results of where <string> is wrong because it will be converted to int type. #3463

Merged
merged 5 commits into from
Nov 18, 2021

Conversation

LittleFall
Copy link
Contributor

@LittleFall LittleFall commented Nov 17, 2021

What problem does this PR solve?

Issue Number: close #3447

Problem Summary:

The result of where <string> is wrong because it will be converted to int type.

What is changed and how it works?

Proposal: xxx

What's Changed: convert it to double type to keep compatible with tidb/tikv.

Related changes

  • PR to update pingcap/docs/pingcap/docs-cn:
  • Need to cherry-pick to the release branch:

Check List

Tests

  • Unit test

Side effects

Release note

Fix the bug that results of `where <string>` is wrong because it will be converted to int type.

@ti-chi-bot
Copy link
Member

ti-chi-bot commented Nov 17, 2021

[REVIEW NOTIFICATION]

This pull request has been approved by:

  • windtalker

To complete the pull request process, please ask the reviewers in the list to review by filling /cc @reviewer in the comment.
After your PR has acquired the required number of LGTMs, you can assign this pull request to the committer in the list by filling /assign @committer in the comment to help you merge this pull request.

The full list of commands accepted by this bot can be found here.

Reviewer can indicate their review by submitting an approval review.
Reviewer can cancel approval by submitting a request changes review.

@ti-chi-bot ti-chi-bot added release-note Denotes a PR that will be considered when it comes time to generate release notes. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Nov 17, 2021
@ti-chi-bot ti-chi-bot added size/S Denotes a PR that changes 10-29 lines, ignoring generated files. and removed size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Nov 17, 2021
@LittleFall
Copy link
Contributor Author

/run-all-tests

@sre-bot
Copy link
Collaborator

sre-bot commented Nov 17, 2021

@LittleFall LittleFall added needs-cherry-pick-release-4.0 PR which needs to be cherry-picked to release-4.0 needs-cherry-pick-release-5.0 PR which needs to be cherry-picked to release-5.0 needs-cherry-pick-release-5.1 PR which needs to be cherry-picked to release-5.1 needs-cherry-pick-release-5.2 PR which needs to be cherry-picked to release-5.2 needs-cherry-pick-release-5.3 Type: Need cherry pick to release-5.3 labels Nov 17, 2021
@@ -877,7 +877,7 @@ String DAGExpressionAnalyzer::convertToUInt8(ExpressionActionsPtr & actions, con
// the basic rule is:
// 1. if the column is only null, just return it
// 2. if the column is numeric, compare it with 0
// 3. if the column is string, convert it to numeric column, and compare with 0
// 3. if the column is string, convert it to float-point column, and compare with 0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how does tidb/mysql solve this problem?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TiDB convert the string to float

Copy link
Contributor

@windtalker windtalker left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@ti-chi-bot ti-chi-bot added the status/LGT1 Indicates that a PR has LGTM 1. label Nov 18, 2021
@windtalker
Copy link
Contributor

Note this pr can not simply be cherry-picked to other branch, since not all the version support cast_string_as_real.

@LittleFall
Copy link
Contributor Author

LittleFall commented Nov 18, 2021

there is a compatible issue in cast string as real. #3475

@LittleFall
Copy link
Contributor Author

Note this pr can not simply be cherry-picked to other branch, since not all the version support cast_string_as_real.

you'are right, so because the severity of the bug is a bit low and 4.0 does not support cast string as real push down, we will not cherry-pick it to 4.0. cc @windtalker @fuzhe1989

@LittleFall
Copy link
Contributor Author

/merge

@ti-chi-bot
Copy link
Member

@LittleFall: It seems you want to merge this PR, I will help you trigger all the tests:

/run-all-tests

You only need to trigger /merge once, and if the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes.

If you have any questions about the PR merge process, please refer to pr process.

Instructions 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.

@ti-chi-bot
Copy link
Member

This pull request has been accepted and is ready to merge.

Commit hash: 641698e

@ti-chi-bot ti-chi-bot added the status/can-merge Indicates a PR has been approved by a committer. label Nov 18, 2021
@sre-bot
Copy link
Collaborator

sre-bot commented Nov 18, 2021

@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created: #3476.

@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created: #3477.

@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created: #3478.

@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created: #3479.

@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created: #3480.

@LittleFall LittleFall removed the needs-cherry-pick-release-4.0 PR which needs to be cherry-picked to release-4.0 label Nov 18, 2021
@LittleFall LittleFall deleted the bugfix/3447 branch November 18, 2021 09:51
ti-chi-bot added a commit that referenced this pull request Dec 20, 2021
ti-chi-bot added a commit that referenced this pull request Jan 26, 2022
ti-chi-bot added a commit that referenced this pull request Apr 14, 2022
ti-chi-bot added a commit that referenced this pull request Jun 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-cherry-pick-release-5.0 PR which needs to be cherry-picked to release-5.0 needs-cherry-pick-release-5.1 PR which needs to be cherry-picked to release-5.1 needs-cherry-pick-release-5.2 PR which needs to be cherry-picked to release-5.2 needs-cherry-pick-release-5.3 Type: Need cherry pick to release-5.3 release-note Denotes a PR that will be considered when it comes time to generate release notes. size/S Denotes a PR that changes 10-29 lines, ignoring generated files. status/can-merge Indicates a PR has been approved by a committer. status/LGT1 Indicates that a PR has LGTM 1.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

The result of where <string> is wrong because it will be converted to int type.
5 participants