From 1d9b9a1bc871ea70fcd8cccdc2edfe673215cfad Mon Sep 17 00:00:00 2001 From: David Hall Date: Mon, 29 Jun 2020 11:41:59 -0500 Subject: [PATCH] MCOL-4125 CHAR must ignore NULL parameters --- utils/funcexp/func_char.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/funcexp/func_char.cpp b/utils/funcexp/func_char.cpp index 9fd603ad4..88d0e01ff 100644 --- a/utils/funcexp/func_char.cpp +++ b/utils/funcexp/func_char.cpp @@ -163,7 +163,7 @@ string Func_char::getStrVal(Row& row, numBytes += getChar(value, pBuf); } - + isNull = false; /* Check whether we got a well-formed string */ MY_STRCOPY_STATUS status; int32_t actualBytes = cs->well_formed_char_length(buf, buf + numBytes, numBytes, &status);