-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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: should handle virtual columns when fetching duplicate rows in batchChecker #10370
Conversation
I'll add some cases tomorrow. |
Codecov Report
@@ Coverage Diff @@
## master #10370 +/- ##
================================================
+ Coverage 77.6497% 77.6695% +0.0198%
================================================
Files 412 411 -1
Lines 85547 85444 -103
================================================
- Hits 66427 66364 -63
+ Misses 14150 14116 -34
+ Partials 4970 4964 -6 |
Codecov Report
@@ Coverage Diff @@
## master #10370 +/- ##
================================================
+ Coverage 77.3876% 77.4078% +0.0201%
================================================
Files 412 412
Lines 85586 85596 +10
================================================
+ Hits 66233 66258 +25
+ Misses 14334 14324 -10
+ Partials 5019 5014 -5 |
Signed-off-by: Shuaipeng Yu <jackysp@gmail.com>
Signed-off-by: Shuaipeng Yu <jackysp@gmail.com>
Signed-off-by: Shuaipeng Yu <jackysp@gmail.com>
Signed-off-by: Shuaipeng Yu <jackysp@gmail.com>
/run-all-tests |
Signed-off-by: Shuaipeng Yu <jackysp@gmail.com>
/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
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
Signed-off-by: Shuaipeng Yu jackysp@gmail.com
What problem does this PR solve?
When fetching the duplicate rows in batchChecker, the virtual columns won't contribute to the dupKV map. So the replace/insert on duplicate will always find duplicate keys.
What is changed and how it works?
Should handle virtual columns when fetching duplicate rows in batchChecker.
Check List
Tests
Code changes
Side effects
Related changes