Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nautaa committed Jun 28, 2024
1 parent bd0f777 commit e4b6f72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/observer/sql/operator/group_by_vec_physical_operator.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class GroupByVecPhysicalOperator : public PhysicalOperator

PhysicalOperatorType type() const override { return PhysicalOperatorType::GROUP_BY_VEC; }

RC open(Trx *trx) { return RC::UNIMPLENMENT; }
RC next(Chunk &chunk) { return RC::UNIMPLENMENT; }
RC close() { return RC::UNIMPLENMENT; }
RC open(Trx *trx) override { return RC::UNIMPLENMENT; }
RC next(Chunk &chunk) override { return RC::UNIMPLENMENT; }
RC close() override { return RC::UNIMPLENMENT; }

private:
};

0 comments on commit e4b6f72

Please sign in to comment.