From 5e5d32826922031ae428d34ceaafafffac07c8a0 Mon Sep 17 00:00:00 2001 From: Serguey Zefirov Date: Tue, 10 Dec 2024 14:05:15 +0300 Subject: [PATCH] Fix build --- dbcon/execplan/arithmeticoperator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbcon/execplan/arithmeticoperator.h b/dbcon/execplan/arithmeticoperator.h index 53ae27327..64b4c9106 100644 --- a/dbcon/execplan/arithmeticoperator.h +++ b/dbcon/execplan/arithmeticoperator.h @@ -333,7 +333,7 @@ inline result_t ArithmeticOperator::execute(result_t op1, result_t op2, bool& is } else { - return result_t{0}; + return 0; } } switch (fOp)