Skip to content

Commit 85d8b23

Browse files
committed
update
1 parent 394023f commit 85d8b23

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

be/src/pipeline/exec/operator.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,6 @@ class OperatorXBase : public OperatorBase {
657657

658658
// Tablets should be hold before open phase.
659659
Status open(RuntimeState* state) override;
660-
Status prepare(RuntimeState* state) override;
661660

662661
[[nodiscard]] virtual Status get_block(RuntimeState* state, vectorized::Block* block,
663662
bool* eos) = 0;

be/src/pipeline/pipeline_task.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,7 @@ Status PipelineTask::_open() {
198198
_dry_run = _sink->should_dry_run(_state);
199199
for (auto& o : _operators) {
200200
auto* local_state = _state->get_local_state(o->operator_id());
201-
auto st = local_state->open(_state);
202-
DCHECK(st.is<ErrorCode::PIP_WAIT_FOR_RF>() ? !_filter_dependencies.empty() : true)
203-
<< debug_string();
204-
RETURN_IF_ERROR(st);
201+
RETURN_IF_ERROR(local_state->open(_state));
205202
}
206203
RETURN_IF_ERROR(_state->get_sink_local_state()->open(_state));
207204
RETURN_IF_ERROR(_extract_dependencies());

0 commit comments

Comments
 (0)