This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.0 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
commit 4a7667d266ff5b666b3fba1fc16f0a4d3ecd1f7b Author: Mr.Hu <[email protected]> AuthorDate: Tue Mar 1 18:38:09 2022 +0800 [Fix]Remove duplicated destructor function in MinMaxFuncBase (#8287) --- be/src/exprs/minmax_predicate.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/be/src/exprs/minmax_predicate.h b/be/src/exprs/minmax_predicate.h index 1004560..3a9ff5b 100644 --- a/be/src/exprs/minmax_predicate.h +++ b/be/src/exprs/minmax_predicate.h @@ -35,8 +35,6 @@ public: virtual Status assign(void* min_data, void* max_data) = 0; // merge from other minmax_func virtual Status merge(MinMaxFuncBase* minmax_func, ObjectPool* pool) = 0; - virtual ~MinMaxFuncBase() = default; - ; }; template <class T> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
