Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Dec 2015 06:42:12 +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: r403707 - head/databases/cego
Message-ID:  <201512140642.tBE6gCRP051809@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Mon Dec 14 06:42:12 2015
New Revision: 403707
URL: https://svnweb.freebsd.org/changeset/ports/403707

Log:
  databases/cego: 2.27.0 -> 2.27.2
  
  - Fix for system tables in CegoAttrDesc::evalReferences, for system
    tables the evalTableReferences method has to be called, otherwise
    attributes for system tables can not be accessed
  - Add dbCheck for Fetch & Cache ( check047 ), all base checks are
    run now with querycache ON and OFF
  - Fix in CegoSelect::nextTuple, the cache schema was not set up
    properly, if nextTuple was just called with empty jfl. This happens
    in case of procedure cursors, ( CegoProcFetch ), where the field
    value list is for all method calls empty
  - Fix for CegoExpr::getAggregationList(), missing break operations
    in switch block. This bug might lead to error messages regarding
    aggregation queries like
    CGCLT > select sum(a) + 0 from t1;
    Error : Invalid expression sum(t1.a) + 0 for aggregation
  - Modification for admin command set tsroot. Also the base path for
    all defined datafiles is set now to new tsroot
  - Fix in CegoBTreeCursor and CegoBTreeManager. Several conditons
    have been changed from fileId && pageId to fileId || pageId
    This bug may results in invalid btree objects in case of btree
    spawn over several datafiles ( the pageId might be 0 in the next
    file )
  - Fix in CegoGroupSpace::insertTuple, the grouping tuple has to be
    searched using getTableAlias instead of getTableName, otherwise the
    following query returns wrong results
    select count(*), a from t1 group by a; --works
    select count(*), a from t1 tx group by a; -- broken
    A check for this has been added in dbcheck suite
  
  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	Mon Dec 14 04:09:59 2015	(r403706)
+++ head/databases/cego/Makefile	Mon Dec 14 06:42:12 2015	(r403707)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	cego
-PORTVERSION=	2.27.0
+PORTVERSION=	2.27.2
 CATEGORIES=	databases
 MASTER_SITES=	http://www.lemke-it.com/
 

Modified: head/databases/cego/distinfo
==============================================================================
--- head/databases/cego/distinfo	Mon Dec 14 04:09:59 2015	(r403706)
+++ head/databases/cego/distinfo	Mon Dec 14 06:42:12 2015	(r403707)
@@ -1,2 +1,2 @@
-SHA256 (cego-2.27.0.tar.gz) = 7c68f658686e70e83e75bea502235183bc00f9ce7cd3de46642b19b2e0dffb8b
-SIZE (cego-2.27.0.tar.gz) = 1371727
+SHA256 (cego-2.27.2.tar.gz) = 21936090441cc5c851957989df54f8ba8b6e078bc4ce9768a0c1d5f8565c0627
+SIZE (cego-2.27.2.tar.gz) = 1370242



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512140642.tBE6gCRP051809>