File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments