-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[fix](delete) Fix delete stmt on MOW table doesn't use partial update in Nereids planner #38751
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
TPC-H: Total hot run time: 41651 ms
|
TPC-DS: Total hot run time: 169621 ms
|
ClickBench: Total hot run time: 29.79 s
|
0fd0c6a
to
e051ed6
Compare
run buildall |
TPC-H: Total hot run time: 41713 ms
|
TPC-DS: Total hot run time: 168394 ms
|
ClickBench: Total hot run time: 29.92 s
|
e051ed6
to
9562e89
Compare
run buildall |
TPC-H: Total hot run time: 41534 ms
|
TPC-DS: Total hot run time: 170156 ms
|
ClickBench: Total hot run time: 29.82 s
|
run p0 |
9562e89
to
e99ea9d
Compare
run buildall |
TPC-H: Total hot run time: 41386 ms
|
TPC-DS: Total hot run time: 168182 ms
|
ClickBench: Total hot run time: 29.82 s
|
run buildall |
TPC-H: Total hot run time: 41552 ms
|
TPC-DS: Total hot run time: 169658 ms
|
ClickBench: Total hot run time: 30.07 s
|
47bca2c
to
52f5df3
Compare
run buildall |
TPC-H: Total hot run time: 41744 ms
|
TPC-DS: Total hot run time: 168055 ms
|
ClickBench: Total hot run time: 30.45 s
|
run buildall |
TPC-H: Total hot run time: 41373 ms
|
TPC-DS: Total hot run time: 170471 ms
|
ClickBench: Total hot run time: 30.15 s
|
run cloud_p0 |
1 similar comment
run cloud_p0 |
@@ -134,23 +135,17 @@ suite("test_delete_on_value") { | |||
// test mor table | |||
sql "insert into ${tableName4} values(1,1,10);" | |||
sql "insert into ${tableName4} values(1,1,5);" | |||
qt_sql "select * from ${tableName4} order by x,y,z;" | |||
sql "set skip_storage_engine_merge=true;" |
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.
Why remove these operations?
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.
it's case irrelevant
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. |
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
… in Nereids planner (#38751) ## Proposed changes 1. Fix nereids planner don't use partial update for delete statement on merge-on-write table introduced in #36782 2. add `IS_PARTIAL_UPDATE: true` in `OlapTableSink.getExplainString()` 3. don't convert the delete stmt to partial update if the table has cluster key.
… in Nereids planner (apache#38751) ## Proposed changes 1. Fix nereids planner don't use partial update for delete statement on merge-on-write table introduced in apache#36782 2. add `IS_PARTIAL_UPDATE: true` in `OlapTableSink.getExplainString()` 3. don't convert the delete stmt to partial update if the table has cluster key.
Proposed changes
IS_PARTIAL_UPDATE: true
inOlapTableSink.getExplainString()
branch-2.1-pick: #39214