svn commit: r466571 - head/databases/cego
Kurt Jaeger
pi at FreeBSD.org
Thu Apr 5 17:10:44 UTC 2018
Author: pi
Date: Thu Apr 5 17:10:43 2018
New Revision: 466571
URL: https://svnweb.freebsd.org/changeset/ports/466571
Log:
databases/cego: update 2.39.11 -> 2.39.12
- Patch in CegoClient to catch format exceptions like
"Invalid datetime string <0> for format <%d.%m.%Y %H:%M:%S>"
This may happen, if on server side bad union selects are defined like
create view v1 as
select a as a, b as b from t1
union all
select a as a, 0 as b from t2;
where b is a datetime data type. In this case, invalid formatted
strings occur on the client side, which are catched now.
- Patch in CegoDatabaseManager::useObject to support lock
delay values > 1 sec. The DBM_LOCKDELAY value in CegoDefs has now
increased to 2500 msec. In some cases for heavy updates
( e.g. clob updates ) this might be useful to avoid ugly exclusive
lock delay messages in database log file
- Fix in CegoTableManager::updateTuple. If the update fails ( this
might happen, if another transaction actually updates the corresponding
tuple ), any allocated lob values are freed now. Otherwise the
data pages for the lob values were allocated with no more references.
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 Thu Apr 5 16:42:19 2018 (r466570)
+++ head/databases/cego/Makefile Thu Apr 5 17:10:43 2018 (r466571)
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= cego
-PORTVERSION= 2.39.11
+PORTVERSION= 2.39.12
CATEGORIES= databases
MASTER_SITES= http://www.lemke-it.com/
Modified: head/databases/cego/distinfo
==============================================================================
--- head/databases/cego/distinfo Thu Apr 5 16:42:19 2018 (r466570)
+++ head/databases/cego/distinfo Thu Apr 5 17:10:43 2018 (r466571)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1522582457
-SHA256 (cego-2.39.11.tar.gz) = 2583698f969bb57e0f85705671973b1db661a21148f80964110c207956a7b395
-SIZE (cego-2.39.11.tar.gz) = 1673838
+TIMESTAMP = 1522947596
+SHA256 (cego-2.39.12.tar.gz) = 5e41fa096e1982ef2d1ba3e783d6374ff1dc9b994d19bf3920c328adaa73c61e
+SIZE (cego-2.39.12.tar.gz) = 1674154
More information about the svn-ports-all
mailing list