-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix](partial update) fix partial update always failed after create rollup/MV #58003
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
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
TPC-H: Total hot run time: 36065 ms |
TPC-DS: Total hot run time: 188865 ms |
ClickBench: Total hot run time: 27.77 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
b498314 to
a06434a
Compare
|
run buildall |
TPC-H: Total hot run time: 34501 ms |
TPC-DS: Total hot run time: 188429 ms |
ClickBench: Total hot run time: 27.68 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
a06434a to
61f2e78
Compare
|
run buildall |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
TPC-H: Total hot run time: 34843 ms |
TPC-DS: Total hot run time: 187259 ms |
ClickBench: Total hot run time: 27.53 s |
61f2e78 to
ef516f6
Compare
|
run buildall |
af4d894 to
37f4d5b
Compare
37f4d5b to
d286182
Compare
|
run buildall |
TPC-H: Total hot run time: 35451 ms |
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run buildall |
TPC-H: Total hot run time: 34086 ms |
TPC-DS: Total hot run time: 186435 ms |
ClickBench: Total hot run time: 27.56 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
liaoxin01
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. |
…ollup/MV (#58003) ### What problem does this PR solve? Create a rollup: ``` ALTER TABLE mow_table ADD ROLLUP rollup1(event_date, event_time, user_id, country, update_time) ``` update table after create rollup with column(city) do not exist in rollup: ``` UPDATE mow_table SET city = "beijing" WHERE user_id = 2000 ``` BE node will core dump(#57934 avoid core dump, but still always fail)
…ollup/MV (apache#58003) Create a rollup: ``` ALTER TABLE mow_table ADD ROLLUP rollup1(event_date, event_time, user_id, country, update_time) ``` update table after create rollup with column(city) do not exist in rollup: ``` UPDATE mow_table SET city = "beijing" WHERE user_id = 2000 ``` BE node will core dump(apache#57934 avoid core dump, but still always fail)
…ollup/MV (apache#58003) Create a rollup: ``` ALTER TABLE mow_table ADD ROLLUP rollup1(event_date, event_time, user_id, country, update_time) ``` update table after create rollup with column(city) do not exist in rollup: ``` UPDATE mow_table SET city = "beijing" WHERE user_id = 2000 ``` BE node will core dump(apache#57934 avoid core dump, but still always fail)
…ollup/MV (apache#58003) ### What problem does this PR solve? Create a rollup: ``` ALTER TABLE mow_table ADD ROLLUP rollup1(event_date, event_time, user_id, country, update_time) ``` update table after create rollup with column(city) do not exist in rollup: ``` UPDATE mow_table SET city = "beijing" WHERE user_id = 2000 ``` BE node will core dump(apache#57934 avoid core dump, but still always fail)
What problem does this PR solve?
Create a rollup:
update table after create rollup with column(city) do not exist in rollup:
BE node will core dump(#57934 avoid core dump, but still always fail)
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)