Date: Sat, 25 Nov 2017 12:54:49 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454880 - head/databases/cego Message-ID: <201711251254.vAPCsnWZ021863@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sat Nov 25 12:54:48 2017 New Revision: 454880 URL: https://svnweb.freebsd.org/changeset/ports/454880 Log: 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 <lemke@lemke-it.com> Modified: head/databases/cego/Makefile head/databases/cego/distinfo Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Sat Nov 25 12:04:44 2017 (r454879) +++ head/databases/cego/Makefile Sat Nov 25 12:54:48 2017 (r454880) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.38.3 +PORTVERSION= 2.38.5 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cego/distinfo ============================================================================== --- head/databases/cego/distinfo Sat Nov 25 12:04:44 2017 (r454879) +++ head/databases/cego/distinfo Sat Nov 25 12:54:48 2017 (r454880) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511375712 -SHA256 (cego-2.38.3.tar.gz) = 4ee4a0435c0ea3680a3862cbc100d07fa53ce86bd6c57d10ce5b441533d18d46 -SIZE (cego-2.38.3.tar.gz) = 1442779 +TIMESTAMP = 1511609756 +SHA256 (cego-2.38.5.tar.gz) = 8a0e4133eaeaf7050a092daf888ea0321d65e754aa31059cbf5e3fc9d43b0f78 +SIZE (cego-2.38.5.tar.gz) = 1443219
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711251254.vAPCsnWZ021863>