diff options
author | unknown <joreland@mysql.com> | 2004-06-10 17:26:26 +0200 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-06-10 17:26:26 +0200 |
commit | 6ca4b6cd1957e5f201490bb723899b82955b5d08 (patch) | |
tree | 5993a0987883d7dbb5a7d1938e70c20dfe09aee6 /ndb | |
parent | be68220fbc7530b4e6c2be9ae22a707b734ff3d4 (diff) | |
download | mariadb-git-6ca4b6cd1957e5f201490bb723899b82955b5d08.tar.gz |
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"
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/include/kernel/signaldata/TcKeyConf.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/include/kernel/signaldata/TcKeyConf.hpp b/ndb/include/kernel/signaldata/TcKeyConf.hpp index bfd684b4af4..c133368bcbc 100644 --- a/ndb/include/kernel/signaldata/TcKeyConf.hpp +++ b/ndb/include/kernel/signaldata/TcKeyConf.hpp @@ -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 |