[refactor](pipeline) Refactor pipeline execution#39982
[refactor](pipeline) Refactor pipeline execution#39982Gabriel39 merged 4 commits intoapache:masterfrom
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
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;
TPC-H: Total hot run time: 37957 ms |
TPC-DS: Total hot run time: 186525 ms |
ClickBench: Total hot run time: 30.98 s |
|
run buildall |
TPC-H: Total hot run time: 37824 ms |
TPC-DS: Total hot run time: 192503 ms |
ClickBench: Total hot run time: 30.82 s |
4bd8676 to
ef351e7
Compare
|
run buildall |
|
run buildall |
|
TeamCity be ut coverage result: |
TPC-H: Total hot run time: 38602 ms |
TPC-DS: Total hot run time: 192414 ms |
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`.
Proposed changes
Unify
prepareandopeninOperator.