clear null flags at number arithmetic expr

This commit is contained in:
obdev
2024-02-09 03:30:28 +00:00
committed by ob-robot
parent d6c9c4991d
commit 267b0d0bc8

View File

@ -422,6 +422,9 @@ inline int ObDoNumberVectorEval(VECTOR_EVAL_FUNC_ARG_DECL, const bool right_eval
eval_flags.set(idx);
continue;
}
if (std::is_same<ResVector, ObDiscreteFormat>::value) {
res_vec->unset_null(idx);
}
ret = nmb_eval_op(idx, left_vec, right_vec, res_vec, nmb_fast_op, local_alloc);
if (OB_SUCC(ret)) { eval_flags.set(idx); }
}