Commit 9619ce2b authored by joreland@mysql.com's avatar joreland@mysql.com

Reset null indicator

parent 534b492a
...@@ -134,6 +134,7 @@ bool ...@@ -134,6 +134,7 @@ bool
NdbRecAttr::receive_data(const Uint32 * data, Uint32 sz){ NdbRecAttr::receive_data(const Uint32 * data, Uint32 sz){
const Uint32 n = (theAttrSize * theArraySize + 3) >> 2; const Uint32 n = (theAttrSize * theArraySize + 3) >> 2;
if(n == sz){ if(n == sz){
theNULLind = 0;
if(!copyoutRequired()) if(!copyoutRequired())
memcpy(theRef, data, 4 * sz); memcpy(theRef, data, 4 * sz);
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment