[refactor] fix warings when compile with clang (#8069)

This commit is contained in:
Zhengguo Yang
2022-02-19 11:29:02 +08:00
committed by GitHub
parent 8892780091
commit 50864aca7d
200 changed files with 1750 additions and 2617 deletions

View File

@ -30,8 +30,8 @@ public:
return Status::NotSupported("Not Implemented VAnalyticEvalNode::get_next.");
}
virtual Status open(RuntimeState* state);
virtual Status get_next(RuntimeState* state, Block* block, bool* eos);
virtual Status open(RuntimeState* state) override;
virtual Status get_next(RuntimeState* state, Block* block, bool* eos) override;
private:
int64_t _desired_num_rows;
@ -39,4 +39,4 @@ private:
TAssertion::type _assertion;
};
} // namespace doris
} // namespace doris::vectorized