K 10 svn:author V 2 pi K 8 svn:date V 27 2017-11-25T12:54:48.888187Z K 7 svn:log V 761 databases/cego: update 2.38.3 -> 2.38.5 - Fix in CegoBTreeValue::valueFromSchema, introduced method getReservedLength to return fixed value length for type fixed and decimal. Since for decimal and fixed type just the dimension is stored in CegoField::getLength, we must define a reserved area for those types. This is done now with constant definition RESERVED_BTREE_FLOATLEN in CegoDefs.h - Improved ordersize calculation in CegoOrderSpace:insertTuple. Now the following formula is used : int s = sizeof(fv); if ( fv.getLength() > STATICFIELDBUF ) s += fv.getLength(); orderEntryLen += s; The catches the base memory usage for the instance but also the dynamic allocated part Submitted by: Bjoern Lemke END