[Fix](compile) Fix compilation errors reported by clang (#10221)

fix failed to build the codebase by clang
This commit is contained in:
Adonis Ling
2022-06-21 11:04:22 +08:00
committed by GitHub
parent 24732126d2
commit d056f5873b

View File

@ -60,7 +60,7 @@ public:
using ColVecResult =
std::conditional_t<IsDecimalNumber<T>, ColumnDecimal<TResult>, ColumnVector<TResult>>;
std::string get_name() const { return "product"; }
std::string get_name() const override { return "product"; }
AggregateFunctionProduct(const DataTypes& argument_types_)
: IAggregateFunctionDataHelper<Data, AggregateFunctionProduct<T, TResult, Data>>(