-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Fix](partial update) Fix BaseTablet::generate_new_block_for_partial_update
#53765
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
Conversation
|
run buildall |
TPC-H: Total hot run time: 33668 ms |
TPC-DS: Total hot run time: 186423 ms |
ClickBench: Total hot run time: 32.34 s |
|
run buildall |
TPC-H: Total hot run time: 33756 ms |
TPC-DS: Total hot run time: 187212 ms |
ClickBench: Total hot run time: 32.23 s |
|
run p0 |
|
run cloud_p0 |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
1 similar comment
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
zhannngchen
left a comment
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
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
dataroaring
left a comment
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
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
…_update` (apache#53765) ### What problem does this PR solve? introduced in apache#41701 When doing alignment for partial update in publish phase, `read_index_old` may be not continuous if some rows in current block has delete signs. Thus `old_block_delete_signs[read_index_old[idx]]` may overflow when all rows in current block have delete signs because `old_block_delete_signs` is empty.
…_update` (apache#53765) ### What problem does this PR solve? introduced in apache#41701 When doing alignment for partial update in publish phase, `read_index_old` may be not continuous if some rows in current block has delete signs. Thus `old_block_delete_signs[read_index_old[idx]]` may overflow when all rows in current block have delete signs because `old_block_delete_signs` is empty.
What problem does this PR solve?
introduced in #41701
When doing alignment for partial update in publish phase,
read_index_oldmay be not continuous if some rows in current block has delete signs. Thusold_block_delete_signs[read_index_old[idx]]may overflow when all rows in current block have delete signs becauseold_block_delete_signsis empty.Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)