From owner-svn-ports-all@freebsd.org Mon Dec 14 06:42:14 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05257A4323D; Mon, 14 Dec 2015 06:42:14 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2C8D14AD; Mon, 14 Dec 2015 06:42:13 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBE6gCIu051811; Mon, 14 Dec 2015 06:42:12 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBE6gCRP051809; Mon, 14 Dec 2015 06:42:12 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201512140642.tBE6gCRP051809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 14 Dec 2015 06:42:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403707 - head/databases/cego X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Dec 2015 06:42:14 -0000 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 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