From 4cf675a21d5210f62a7907f464a06406e33468ba Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 9 Dec 2004 16:19:24 +0100 Subject: ndb - Fix printout/bugs for bit column ndb/include/kernel/AttributeHeader.hpp: Add pseudo column for row size ndb/include/ndbapi/NdbDictionary.hpp: Add pseudo column for row size ndb/include/util/Bitmask.hpp: Remove assert which was not needed ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp: Missing break ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp: 1) New pseudo column ROW_SIZE 2) Fix bug in Bit columns ndb/src/ndbapi/NdbDictionary.cpp: Fix prinout of bit column ndb/src/ndbapi/NdbDictionaryImpl.cpp: Bug fix Bit column ndb/src/ndbapi/NdbRecAttr.cpp: Fix prinout of bit column ndb/test/src/HugoCalculator.cpp: Bit enable Hugo ndb/test/src/HugoOperations.cpp: Bit enable Hugo ndb/test/src/NDBT_Tables.cpp: Bit enable Hugo --- ndb/include/util/Bitmask.hpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'ndb/include/util/Bitmask.hpp') diff --git a/ndb/include/util/Bitmask.hpp b/ndb/include/util/Bitmask.hpp index 2cd95190ed7..a88c48b4cb3 100644 --- a/ndb/include/util/Bitmask.hpp +++ b/ndb/include/util/Bitmask.hpp @@ -814,7 +814,6 @@ inline void BitmaskImpl::getField(unsigned size, const Uint32 src[], unsigned pos, unsigned len, Uint32 dst[]) { - assert(len > 0); assert(pos + len < (size << 5)); src += (pos >> 5); @@ -834,7 +833,6 @@ inline void BitmaskImpl::setField(unsigned size, Uint32 dst[], unsigned pos, unsigned len, const Uint32 src[]) { - assert(len > 0); assert(pos + len < (size << 5)); dst += (pos >> 5); -- cgit v1.2.1