liaoxin01 commented on code in PR #9582: URL: https://github.com/apache/incubator-doris/pull/9582#discussion_r881554793
########## be/src/vec/functions/function_binary_arithmetic.h: ########## @@ -449,6 +469,18 @@ struct DecimalBinaryOperation { private: /// there's implicit type convertion here static NativeResultType apply(NativeResultType a, NativeResultType b) { + if (config::enable_execution_decimalv3) { + if constexpr (OpTraits::can_overflow && check_overflow) { + NativeResultType res; + if (Op::template apply<NativeResultType>(a, b, res)) { + LOG(FATAL) << "Decimal math overflow"; Review Comment: The column may not be ColumnNullable, so we can't return null. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org