-
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
tables: fix insert ignore on duplicate with dup prefix 2nd index #25905
Conversation
} | ||
for _, c := range idx.Meta().Columns { | ||
if modified[c.Offset] { | ||
return false | ||
if c.Length != types.UnspecifiedLength && (newRow[c.Offset].Kind() == types.KindString || newRow[c.Offset].Kind() == types.KindBytes) { |
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.
Besides KindString
, will other prefix index column types need similar processing like this?
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.
Agree, feel that there may still be problems later, but this type of SQL execution is rare, so it may okay for this release branch.
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
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
@cfzjywxk: Please use GitHub review feature instead of For the reason we drop support to the commands, see also this page. 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. |
[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. |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 307a55d
|
@lysu shall we pick this PR to master? It is interesting we first fix the issue on a release branch. FOUND: #25809 (comment) |
hi just as #25809 (comment) said, the master branch use a different mechanism and doesn't has this bug |
/merge |
/run-unit-test |
Signed-off-by: ti-srebot <[email protected]>
cherry pick to release-3.0 in PR #27510 |
Signed-off-by: ti-srebot <[email protected]>
cherry pick to release-4.0 in PR #27511 |
What problem does this PR solve?
Issue Number: close #25809
Problem Summary:
now it relies on
modified
array to decide whether skip modified index dup check after duplicate updated.but when clustered primary key has same column with secondary index,and the column is prefix, changed in table doesn't indicate it be change in index.
What is changed and how it works?
What's Changed, How it Works:
truncate datum to index length and re-check modified for prefix column
Related changes
Check List
Tests
Side effects
Release note