svn commit: r506611 - head/databases/cego

Kurt Jaeger pi at FreeBSD.org
Sun Jul 14 07:48:03 UTC 2019


Author: pi
Date: Sun Jul 14 07:48:01 2019
New Revision: 506611
URL: https://svnweb.freebsd.org/changeset/ports/506611

Log:
  databases/cego: upgrade 2.45.1 -> 2.45.5
  
  - Fix in CegoQuery::execute for INSERTBYSELECT_QUERY case.
    Since the selected tuples are clustered ( MAX_CLUSTERED_INSERT) we have
    to create a local copy for the corresponding field values.
    Otherwise, tuple information could be invalidated by relocated
    buffer pool pages
  - Fix in CegoFieldValue::fastComp, the castTo method calls for t1
    and t2 have to be switched, since first ist has to be checked to
    cast to native btree datatype ( used in CegoBTreeCursor::traceLog,
    inRange and fullMatch )
    example:
    create table t1 ( a int, d datetime);
    create btree b1 on t1(b);
    select a from t1 where b = '12.07.2019'; -- should be casted
  					   -- from string to datetime
  - Code cleanup to avoid warnings with -Wswitch-enum
  - In CegoClient, added input data check via File::hasData ( available
    with lfcbase 1.14.0 ). Now, pipe input is autodetected, so the
    command line argument "--pipe" has been removed
  
  Submitted by:	Bjoern Lemke <lemke at lemke-it.com>

Modified:
  head/databases/cego/Makefile
  head/databases/cego/distinfo

Modified: head/databases/cego/Makefile
==============================================================================
--- head/databases/cego/Makefile	Sun Jul 14 07:45:22 2019	(r506610)
+++ head/databases/cego/Makefile	Sun Jul 14 07:48:01 2019	(r506611)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	cego
-PORTVERSION=	2.45.1
+PORTVERSION=	2.45.5
 CATEGORIES=	databases
 MASTER_SITES=	http://www.lemke-it.com/
 

Modified: head/databases/cego/distinfo
==============================================================================
--- head/databases/cego/distinfo	Sun Jul 14 07:45:22 2019	(r506610)
+++ head/databases/cego/distinfo	Sun Jul 14 07:48:01 2019	(r506611)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1562489239
-SHA256 (cego-2.45.1.tar.gz) = cb7da6e08a79a437e51885c5d3e6df05de93048a4c04315302cb73bb05d7144c
-SIZE (cego-2.45.1.tar.gz) = 3148999
+TIMESTAMP = 1563089294
+SHA256 (cego-2.45.5.tar.gz) = b540477dece3a63c5e7e73926c4499e4bd999d0eb9a05a115261bd9fe5d004ec
+SIZE (cego-2.45.5.tar.gz) = 3151076


More information about the svn-ports-all mailing list