Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Jun 2017 18:48:09 +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: r442514 - head/databases/cego
Message-ID:  <201706031848.v53Im9VP066703@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sat Jun  3 18:48:09 2017
New Revision: 442514
URL: https://svnweb.freebsd.org/changeset/ports/442514

Log:
  databases/cego: 2.33.12 -> 2.33.14
  
  - Design modification in CegoAction for semantic action ( execXXX methods )
    An analysed statement is now just executed after complete succesful
    parsing of the given input. This avoid protocol effects for queries
    like "select * from t1;;" where the query is executed but the
    second semicolon is detected as an parse error which also is sent
    to the client.
    For this the new method CegoAction::execute has introduced which
    is ( explicitly ) called after successful CegoAction::parse
  - Fix for distinct handling in CegoAggreation
    Fix for alias handling regarding view creates. Alias definitions
    are mandatory now for aggregated attribute definitions, e.g.
    create view v1 as select count(*) from t1;
    => returns now
    ERROR: Missing alias reference for view create
    and must be written as
    create view v1 as select count(*) as c from t1;
  
  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 Jun  3 18:41:02 2017	(r442513)
+++ head/databases/cego/Makefile	Sat Jun  3 18:48:09 2017	(r442514)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	cego
-PORTVERSION=	2.33.12
+PORTVERSION=	2.33.14
 CATEGORIES=	databases
 MASTER_SITES=	http://www.lemke-it.com/
 

Modified: head/databases/cego/distinfo
==============================================================================
--- head/databases/cego/distinfo	Sat Jun  3 18:41:02 2017	(r442513)
+++ head/databases/cego/distinfo	Sat Jun  3 18:48:09 2017	(r442514)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1495867900
-SHA256 (cego-2.33.12.tar.gz) = da06fc7e8df9b987a74b52128a706c218b8f18c8ee6e3214981936c1461e5a8f
-SIZE (cego-2.33.12.tar.gz) = 1455611
+TIMESTAMP = 1496513315
+SHA256 (cego-2.33.14.tar.gz) = f9dd63c30feb446fd5246a7e382f08a8165f91b37c18d7655906459ca4bc187a
+SIZE (cego-2.33.14.tar.gz) = 1408782



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