[fix](pipeline) remove the redundant override of the close function in set operators (#15161)

This commit is contained in:
Jerry Hu
2022-12-19 14:09:36 +08:00
committed by GitHub
parent 07f5d9562c
commit f1321c2fed
2 changed files with 0 additions and 3 deletions

View File

@ -55,7 +55,6 @@ public:
Status sink(RuntimeState* state, vectorized::Block* block, SourceState source_state) override;
Status finalize(RuntimeState* state) override;
Status open(RuntimeState* /*state*/) override { return Status::OK(); }
Status close(RuntimeState* /*state*/) override { return Status::OK(); }
private:
int _child_id;

View File

@ -50,8 +50,6 @@ public:
bool can_write() override { return true; }
Status close(RuntimeState* /*state*/) override { return Status::OK(); };
private:
vectorized::VSetOperationNode<is_intersect>* _set_node;
};