diff options
author | pi <pi@FreeBSD.org> | 2015-10-04 20:31:09 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2015-10-04 20:31:09 +0800 |
commit | 7098a1dfba8cf145b8328a8e2da90bf9f47d8694 (patch) | |
tree | bf8d6dba88a463f01b060c82a1e75cb49bb13140 /databases | |
parent | 519c564cccab2f560ec9c2bafeba5540837ea419 (diff) | |
download | freebsd-ports-gnome-7098a1dfba8cf145b8328a8e2da90bf9f47d8694.tar.gz freebsd-ports-gnome-7098a1dfba8cf145b8328a8e2da90bf9f47d8694.tar.zst freebsd-ports-gnome-7098a1dfba8cf145b8328a8e2da90bf9f47d8694.zip |
databases/cego: 2.25.3 -> 2.26.2
- Fix in CegoBufferPool::calcHas and CegoBufferPool::calcSegement
For large file id's the integer range for the hash key might be
exceeded, which lead to wrong address calculation.
The hash key now is calculated in long based values
- Introduced server mode with same behaviour as daemon mode, but
no child process is forked and server can be terminated with Ctrl-C
- Small formatting fix in CegoOutput
- Fix in CegoDistCursor for inner and outer joins
Inner or outer joins with additional where condition might return
incorrect result set since the condition was just evaluated inside
the join.
To correct this, the WHERE condition is also checked via evalCondition.
This required also a fix in the evalCondition method.
- Added multi segment support to CegoBufferPool. Since the pool is
divided now into several memory segments, this allows larger buffer
pool configurations.
- Improvements for output formatting regarding string functions
(cegoFunction::getReturnTypeLen). Size of required column field size
is now calculated, so the outlook looks more pretty
- Added hints from David Binderman in CegoAction::backChar and
CegoBufferPage::printPage ( changed pointer comparison to avoid
-Wextra compile warnings ) Thanks !
Submitted by: Bjoern Lemke <lemke@lemke-it.com>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/cego/Makefile | 2 | ||||
-rw-r--r-- | databases/cego/distinfo | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/databases/cego/Makefile b/databases/cego/Makefile index 880f2bfc8000..e545e868845e 100644 --- a/databases/cego/Makefile +++ b/databases/cego/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.25.3 +PORTVERSION= 2.26.2 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ diff --git a/databases/cego/distinfo b/databases/cego/distinfo index 6428d282bd33..bb8d70b9d308 100644 --- a/databases/cego/distinfo +++ b/databases/cego/distinfo @@ -1,2 +1,2 @@ -SHA256 (cego-2.25.3.tar.gz) = 68712d9be6343197377eb0cd0a89872fd2d8c0b17190c3b6d73583d42885c937 -SIZE (cego-2.25.3.tar.gz) = 1224506 +SHA256 (cego-2.26.2.tar.gz) = 48ae5c0c9a38ee825ab8a24d6f951e5a4ae83dfbc618e8e7c32f6fbda29252d5 +SIZE (cego-2.26.2.tar.gz) = 1226359 |