diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2017-11-25 12:54:48 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2017-11-25 12:54:48 +0000 |
commit | 94f035c7c08a672a5a8a87fa8da89f17079f208d (patch) | |
tree | b5277760c4d0bee21f998ccdb9f37a8e6ffca13b | |
parent | 69752afd6d1cbb238bd2acd0b371fa07abc327cf (diff) | |
download | freebsd-ports-94f035c7c08a672a5a8a87fa8da89f17079f208d.zip |
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>
-rw-r--r-- | databases/cego/Makefile | 2 | ||||
-rw-r--r-- | databases/cego/distinfo | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/databases/cego/Makefile b/databases/cego/Makefile index 406eb4b2e751..3dae1bd1facb 100644 --- a/databases/cego/Makefile +++ b/databases/cego/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.38.3 +PORTVERSION= 2.38.5 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ diff --git a/databases/cego/distinfo b/databases/cego/distinfo index e50d15cee914..40c97edc0536 100644 --- a/databases/cego/distinfo +++ b/databases/cego/distinfo @@ -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 |