Uh oh!
There was an error while loading. Please reload this page.
[refactor](pipeline) Refactor pipeline execution - #39982
Conversation
doris-robot
commented
Aug 27, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
Gabriel39
commented
Aug 27, 2024
run buildall |
| } | ||
| Status AnalyticSinkOperatorX::prepare(RuntimeState* state) { | ||
| Status AnalyticSinkOperatorX::open(RuntimeState* state) { |
There was a problem hiding this comment.
warning: method 'open' can be made const [readability-make-member-function-const]
| Status AnalyticSinkOperatorX::open(RuntimeState* state) { | |
| Status AnalyticSinkOperatorX::open(RuntimeState* state) const{ |
be/src/pipeline/exec/analytic_sink_operator.h:76:
- Status open(RuntimeState* state) override;+ Status open(RuntimeState* state) const override;Uh oh!
There was an error while loading. Please reload this page.
doris-robot
commented
Aug 27, 2024
TPC-H: Total hot run time: 37957 ms |
doris-robot
commented
Aug 27, 2024
TPC-DS: Total hot run time: 186525 ms |
doris-robot
commented
Aug 27, 2024
ClickBench: Total hot run time: 30.98 s |
Gabriel39
commented
Aug 27, 2024
run buildall |
Uh oh!
There was an error while loading. Please reload this page.
doris-robot
commented
Aug 27, 2024
TPC-H: Total hot run time: 37824 ms |
doris-robot
commented
Aug 27, 2024
TPC-DS: Total hot run time: 192503 ms |
doris-robot
commented
Aug 27, 2024
ClickBench: Total hot run time: 30.82 s |
4bd8676 to
ef351e7CompareGabriel39
commented
Sep 5, 2024
run buildall |
Gabriel39
commented
Sep 5, 2024
run buildall |
doris-robot
commented
Sep 5, 2024
TeamCity be ut coverage result: |
doris-robot
commented
Sep 5, 2024
TPC-H: Total hot run time: 38602 ms |
doris-robot
commented
Sep 5, 2024
TPC-DS: Total hot run time: 192414 ms |
doris-robot
commented
Sep 5, 2024
ClickBench: Total hot run time: 31.82 s |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
Unify `prepare` and `open` in `Operator`.
Unify `prepare` and `open` in `Operator`.
Unify `prepare` and `open` in `Operator`.
Proposed changes
Unify
prepareandopeninOperator.