Commit 5859b567 authored by unknown's avatar unknown
Browse files

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -239,7 +239,8 @@ public:
      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;