From d056f5873b9ddfd11e32dc97cb31f0cdf2ae3676 Mon Sep 17 00:00:00 2001 From: Adonis Ling Date: Tue, 21 Jun 2022 11:04:22 +0800 Subject: [PATCH] [Fix](compile) Fix compilation errors reported by clang (#10221) fix failed to build the codebase by clang --- be/src/vec/aggregate_functions/aggregate_function_product.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/aggregate_functions/aggregate_function_product.h b/be/src/vec/aggregate_functions/aggregate_function_product.h index 0e392b0e69..cdf62a9dfc 100644 --- a/be/src/vec/aggregate_functions/aggregate_function_product.h +++ b/be/src/vec/aggregate_functions/aggregate_function_product.h @@ -60,7 +60,7 @@ public: using ColVecResult = std::conditional_t, ColumnDecimal, ColumnVector>; - std::string get_name() const { return "product"; } + std::string get_name() const override { return "product"; } AggregateFunctionProduct(const DataTypes& argument_types_) : IAggregateFunctionDataHelper>(