From 1020fe165bf26758052108513e79db071ec4b347 Mon Sep 17 00:00:00 2001 From: HappenLee Date: Mon, 30 Jan 2023 22:17:50 +0800 Subject: [PATCH] [Bug](function) positive function coredump in decimal (#16230) --- be/src/vec/functions/function_unary_arithmetic.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/be/src/vec/functions/function_unary_arithmetic.h b/be/src/vec/functions/function_unary_arithmetic.h index c92ceb54d1..8113f42179 100644 --- a/be/src/vec/functions/function_unary_arithmetic.h +++ b/be/src/vec/functions/function_unary_arithmetic.h @@ -54,14 +54,17 @@ template struct AbsImpl; template struct NegativeImpl; +template +struct PositiveImpl; /// Used to indicate undefined operation struct InvalidType; template