From f696c7967845c4f7935cd7b25ed97cac98e691d4 Mon Sep 17 00:00:00 2001 From: jacktengg <18241664+jacktengg@users.noreply.github.com> Date: Sat, 21 Oct 2023 01:36:03 +0800 Subject: [PATCH] [fix](rf) fix minmax runtime filter --- be/src/exprs/create_predicate_function.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/be/src/exprs/create_predicate_function.h b/be/src/exprs/create_predicate_function.h index 7d89141c443b37..011270cd09e3cb 100644 --- a/be/src/exprs/create_predicate_function.h +++ b/be/src/exprs/create_predicate_function.h @@ -34,10 +34,7 @@ class MinmaxFunctionTraits { using BasePtr = MinMaxFuncBase*; template static BasePtr get_function() { - return new MinMaxNumFunc::CppType>, - typename PrimitiveTypeTraits::CppType>>(); + return new MinMaxNumFunc::CppType>(); } };