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

executor: fix wrong key range of index scan when filter is comparing year column with NULL (#23079) #23104

Merged
merged 12 commits into from
Mar 18, 2021

Conversation

ti-srebot
Copy link
Contributor

@ti-srebot ti-srebot commented Mar 4, 2021

cherry-pick #23079 to release-4.0
You can switch your code base to this Pull Request by using git-extras:

# In tidb repo:
git pr https://github.com/pingcap/tidb/pull/23104

After apply modifications, you can push your change to this PR via:

git push [email protected]:ti-srebot/tidb.git pr/23104:release-4.0-db62e341fd24

Signed-off-by: guo-shaoge [email protected]

What problem does this PR solve?

Issue Number: close #23038

Problem Summary: use following case:

use test;
drop table if exists gjttbl;
CREATE TABLE `gjttbl` (
    `gjtc1` year(4) DEFAULT NULL COMMENT 'DATE AND TIME',
    `gjtc2` varchar(20) DEFAULT NULL,
    KEY (`gjtc1`)
    );
insert into gjttbl values(1, "1");
insert into gjttbl values(1, "2");
select  t1.gjtc1, t2.gjtc1  from gjttbl as t1 inner join gjttbl as t2 on t1.gjtc1 = t2.gjtc1 where t1.gjtc1 != NULL;

Output should be empty, but TiDB give result.

What is changed and how it works?

What's Changed: change datum.go:convertToMysqlYear(), when arg is NULL, this function accidentally set result tobe zero year.

How it Works: go:convertToMysqlYear() is called by ranger.(*builder).buildFormBinOp(), which will build key range. So if go:convertToMysqlYear() change NULL to zero, the key range for index scan is wrong.

Related changes

  • Need to cherry-pick to the release branch

Check List

Tests

  • Integration test: tidb_test.go:TestYear()

Side effects: no

Release note

  • fix wrong key range of index scan when filter is comparing year column with NULL

@ti-srebot
Copy link
Contributor Author

/run-all-tests

@ti-srebot ti-srebot added component/expression sig/execution SIG execution sig/sql-infra SIG: SQL Infra size/L Denotes a PR that changes 100-499 lines, ignoring generated files. type/4.0-cherry-pick labels Mar 4, 2021
@ti-srebot ti-srebot requested review from wshwsh12 and XuHuaiyu March 4, 2021 08:05
@ti-srebot ti-srebot added this to the v4.0.11 milestone Mar 4, 2021
@ti-srebot
Copy link
Contributor Author

@guo-shaoge you're already a collaborator in bot's repo.

@guo-shaoge
Copy link
Collaborator

/run-check_dev

1 similar comment
@guo-shaoge
Copy link
Collaborator

/run-check_dev

@guo-shaoge
Copy link
Collaborator

/run-check_dev

@guo-shaoge
Copy link
Collaborator

/run-check_dev

@guo-shaoge
Copy link
Collaborator

Rely on this PR

@guo-shaoge
Copy link
Collaborator

/run-check_dev

@guo-shaoge guo-shaoge force-pushed the release-4.0-db62e341fd24 branch from 4f2cf60 to f820429 Compare March 18, 2021 12:13
@XuHuaiyu
Copy link
Contributor

/LGTM

@ti-chi-bot ti-chi-bot added the status/LGT1 Indicates that a PR has LGTM 1. label Mar 18, 2021
@zhouqiang-cl zhouqiang-cl added the cherry-pick-approved Cherry pick PR approved by release team. label Mar 18, 2021
@AilinKid
Copy link
Contributor

/lgtm

@ti-chi-bot
Copy link
Member

[REVIEW NOTIFICATION]

This pull request has been approved by:

  • AilinKid
  • XuHuaiyu

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 writing /lgtm in a comment.
Reviewer can cancel approval by writing /lgtm cancel in a comment.

@ti-chi-bot ti-chi-bot added status/LGT2 Indicates that a PR has LGTM 2. and removed status/LGT1 Indicates that a PR has LGTM 1. labels Mar 18, 2021
@AilinKid
Copy link
Contributor

/merge

@ti-chi-bot
Copy link
Member

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

Commit hash: b060836

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

/run-unit-test

@ti-chi-bot ti-chi-bot merged commit 11a9254 into pingcap:release-4.0 Mar 18, 2021
@zhouqiang-cl zhouqiang-cl modified the milestones: v4.0.11, v4.0.12 Mar 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cherry-pick-approved Cherry pick PR approved by release team. component/expression sig/execution SIG execution sig/sql-infra SIG: SQL Infra size/L Denotes a PR that changes 100-499 lines, ignoring generated files. status/can-merge Indicates a PR has been approved by a committer. status/LGT2 Indicates that a PR has LGTM 2. type/4.0-cherry-pick
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants