Commit 6ca4b6cd authored by unknown's avatar unknown
Browse files

BUG#4088 - Multiple mixed index/normal reads


ndb/include/kernel/signaldata/TcKeyConf.hpp:
  BUG#4088 - Multiple mixed index/normal reads
  Make setNoOps "set's" and not only "or's"
parent be68220f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ inline
void 
TcKeyConf::setNoOfOperations(Uint32 & confInfo, Uint32 noOfOps){
  ASSERT_MAX(noOfOps, 65535, "TcKeyConf::setNoOfOperations");
  confInfo |= noOfOps;
  confInfo = (confInfo & 0xFFFF) | noOfOps;
}

inline