Commit 5859b567 authored by unknown's avatar unknown

bug#18040 - ndb - online build of unique index

  Make sure that senderData value in communiation with LQH does not get overwritten by incorrect union
  


storage/ndb/src/kernel/blocks/suma/Suma.hpp:
  Fix union, or otherwise values will be over written
parent 95f1fda1
...@@ -239,7 +239,8 @@ public: ...@@ -239,7 +239,8 @@ public:
suma.progError(line, cause, extra); suma.progError(line, cause, extra);
} }
union { Uint32 nextPool; Uint32 nextList; Uint32 prevList; Uint32 ptrI; }; Uint32 prevList; Uint32 ptrI;
union { Uint32 nextPool; Uint32 nextList; };
}; };
friend struct SyncRecord; friend struct SyncRecord;
......
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