[fix](pipeline) remove the redundant override of the close function in set operators (#15161)
This commit is contained in:
@ -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;
|
||||
|
||||
@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user