1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Modified /storage/connect/value.cpp line 668

This commit is contained in:
Olivier Bertrand
2017-07-20 11:19:44 +02:00
parent e99af2a3fa
commit df091237a8

View File

@@ -665,7 +665,7 @@ bool TYPVAL<TYPE>::SetValue_pval(PVAL valp, bool chktype)
if (chktype && Type != valp->GetType())
return true;
if (!(Null = valp->IsNull() && Nullable))
if (!(Null = (valp->IsNull() && Nullable)))
Tval = GetTypedValue(valp);
else
Reset();