Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
28 Nov 2020 19:28:22
1.6.0

|
pi  |
devel/lfcbase: update 1.14.6 -> 1.15.0
devel/lfcxml: update 1.2.11 -> 1.3.0
databases/cego: update 2.45.35 -> 2.46.0
databases/cegobridge: update 1.5.4 -> 1.6.0
Please note: database updates from 2.45.x to version 2.46.x require
a xml tableset export and import, since table structure information
has been changed!
lfcbase:
- Added template class GraphT for dependency graph implementations
- Fix in BigInteger::mul and BigInteger::div, signing was not treated
( e.g. -12 * 12 => -144 ( was 144 ) )
lfcxml: get in sync with lfcbase (Only the first 15 lines of the commit message are shown above ) |
01 Dec 2019 20:17:42
1.5.4

|
pi  |
databases/cegobridge: upgrade 1.5.3 -> 1.5.4
- Fixes in MySQLFormatter to treat several datatypes and default values
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
21 Sep 2019 05:58:41
1.5.3

|
pi  |
databases/cegobridge: upgrade 1.5.2 -> 1.5.3
- MySQL SET lines are no longer parsed, the scanner ignores these lines now
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
06 Jul 2019 10:43:13
1.5.2

|
pi  |
databases/cegobridge: upgrade 1.5.1 -> 1.5.2
- Fix in MySQLAction::storeAttrColumn, _defaultOptString.length() and
_nullOptString.length() must be equal or greater 1 ( not 0 )
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
04 Jul 2019 19:14:38
1.5.1

|
pi  |
databases/cegobridge: upgrade 1.5.0 -> 1.5.1
- Added MySQL type support for type date and type bigint
- Activated append mode in CegoBridge::main, which speeds up import
performance significantly
- In MySQLAction::storeKey, changed btreename to _ since MySQL
allows non unique key names
- Added stored procedure grammar defintions to MySQLParser.def.
Semantic actions still not implemented
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
21 Apr 2019 13:31:25
1.5.0

|
pi  |
devel/lfcbase: update 1.11.9 -> 1.13.0
devel/lfcxml: update 1.2.6 -> 1.2.10
databases/cego: update 2.39.16 -> 2.44.1
databases/cegobridge: update 1.4.0 -> 1.5.0
databases/p5-DBD-cego: update 14.0 -> 1.5.0
- Warning: storage format has changed
Export to xml format before upgrade and re-import after the upgrade
See UPDATING
- recompile all applications linked to libcego
- Lots of changes, among them:
o improved crash recovery
o fixes to SQL expected behaviour
o better CDATA handling
o fixes primary key handling design issue
o changes to serialisation for export/import, XML export/import is still
possible
Submitted by: Bjoern Lemke <lemke@lemke-it.com>
Changelog: http://www.lemke-it.com/litexec?request=pubnews&user=&lang=en&numlog=1000 |
01 Mar 2018 12:29:31
1.4.0

|
pi  |
databases/cego: update 2.39.1 -> 2.39.2
databases/cegobridge: update 1.3.0 -> 1.4.0
cego:
- Fix in CegoTableManager::updateTuple, while setting up expression
list, field list array must be setup BEFORE block ist set, since
field list is needed by block setup ( in case of subqueries for
prepare )
cegobridge:
- Adaptions for cego-2.39
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
18 Nov 2017 08:34:07
1.3.0

|
pi  |
databases/cego: update 2.37.3 -> 2.38.0
databases/cegobridge: update 1.2.1 -> 1.3.0
cego:
- Fix in CegoSelect::clone, pUnionSelect was not cloned, which might
lead to seg faults
- Introduced predicate clause for select .. in ( expr, expr, ... ),
e.g. select * from t1 where a in ( 1, 2, 3 ); This was still not
implemented but is part of standard SQL.
cegobridge:
- Adaptions made for modified cego-2.38.0 API with extended
CegoDatabaseFormatter::formatPred method ( exprList was added for
new introduced select in ( expr list ) predicate )
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
10 Nov 2017 19:09:34
1.2.1

|
pi  |
devel/lfcbase: update 1.11.0 -> 1.11.1
devel/lfcxml: update 1.2.5 -> 1.2.6
databases/cego: update 2.37.0 -> 2.37.1
databases/cegobridge: update 1.2.0 -> 1.2.1
- New generated configure script with libtool-2.4.6
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
08 Nov 2017 10:23:00
1.2.0

|
pi  |
devel/lfcbase: update 1.10.3 -> 1.11.0
databases/cego: update 2.36.4 -> 2.37.0
databases/p5-DBD-cego: update 1.3.0 -> 1.4.0
databases/cegobridge: update 1.1.6 -> 1.2.0
lfcbase:
- Layout improvements in Pager class
- Changed constructor for Net and NetHandler class to setup maxSendLen.
Since this changes the API, minor release level has been increased
cego:
- Improvements for cgblow simulation mode added
- Improvements for cgclt, added pipe mode to read input from stdin
Now comments are allowed also after delimiter token, e.g.
create table t1(a int); -- a sample table (Only the first 15 lines of the commit message are shown above ) |
01 Nov 2017 17:42:35
1.1.6

|
pi  |
devel/lfcbase: update 1.10.1 -> 1.10.2
databases/cego: update 2.36.3 -> 2.36.4
databases/cegobridge: update 1.1.5 -> 1.1.6
cego:
- Fix in CegoSelect::nextTuple, before adding an entry to the query
cache, it has to be checked, if any tables from foreign tableset
are referenced in the query. If so, no cache entry is made, since
table changes for foreign tables are not detected.
- Improved error messages for invalid database objects
- Decreased shutdown delay time by reducing net delays for all
thread pools and optimized mediator thread wait procedure
- Completely removed the nologging option for import actions.
Logging is disabled in any case now.
- Optimization added for log handling. During ( xml ) import,
logging is completely deactivated, after import is completed,
log is started again and a checkpoint is written.
Since import can be repeated in case of a system during import,
nothing gets lost. Deactivating logging increases import speed and
avoids side effects
cegobridge:
- Speed up imports by changing the way the parser reads the input
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
30 Oct 2017 18:06:27
1.1.5

|
pi  |
databases/cegobridge: update 1.1.4 -> 1.1.5
- Add some compat hooks to parse mysql 5.0 exports
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
22 Jul 2017 08:32:31
1.1.4

|
pi  |
databases/cegobridge: update 1.1.3 -> 1.1.4
- fixes build problem due to invalid pointer arithmetic
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
07 May 2017 11:17:41
1.1.3_1

|
pi  |
databases/cegobridge: fix backChar() for Oracle/Postgres, too |
05 Mar 2017 11:08:50
1.1.3

|
pi  |
devel/lfcbase: update 1.8.12 -> 1.9.0
databases/cego: update 2.32.8 -> 2.32.11
databases/cegobridge: update 1.1.2 -> 1.1.3, fix build with clang 4.0
devel/lfcbase:
- Added Monitor class for ncurses based GUI utility implementation.
This class provides GUI layout and event handling to simply ncurses
based GUI tool implementaton.
- Added class Pager for curses based pager implementation
databases/cego:
- Include stdlib.h added in CegoNet ( still missing forLinux compiles )
- Added CegoFieldValue::getDim method required for arithmetic operations
on fixed values
- Fix in CegoTableManager::getPoolInfo, readdelay and writedelay was (Only the first 15 lines of the commit message are shown above ) |
01 Apr 2016 14:00:57
1.1.2

|
mat  |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
06 Feb 2016 15:59:38
1.1.2

|
pi  |
devel/lfcbase: 1.7.0 -> 1.7.2
databases/cego: 2.28.3 -> 2.29.1
databases/cegobridge: 1.1.1 -> 1.1.2
Please note: Updating cego databases needs an export/import
cycle for 2.28 -> 2.29
lfcbase:
- Fix in Datetime.cc, added include config.h, otherwiese the local
implementation of strptime ist used. This should just be done, if
the system API does not provide this call ( e.g. MINGW ) .
- Memory leak fixed in File::readLine
cego:
- Started with clob datatype implementation (Only the first 15 lines of the commit message are shown above ) |
12 Jan 2016 08:53:00
1.1.1

|
pi  |
databases/cegobridge: 1.1.0 -> 1.1.1, fixes build |
11 Jan 2016 12:30:27
1.1.0_1

|
pi  |
devel/lfcbase: 1.6.7 -> 1.7.0
devel/lfcxml: 1.1.8 -> 1.2.2
databases/cego: 2.27.2 -> 2.28.3
databases/p5-DBD-cego: bump portrevision
databases/cegobridge: bump portrevision
IMPORTANT: Upgrades of cego 2.27.x to 2.28.x databases has to be done by
export and import.
lfcbase:
- Adaptions made for build with msys2 / mingw64. Many windows
specific stuff could be eliminated, since mingw64 provides better
POSIX support ( e.g. pthreads, timer functions .. )
lfcxml: (Only the first 15 lines of the commit message are shown above ) |
11 Sep 2015 06:42:03


|
pi  |
databases/cegobridge: 1.0.1 -> 1.1.0
- adaptions for cego-2.25.0 API change
Submitted by: Bjoern Lemke <lemke@lemke-it.com> |
01 Jun 2015 20:58:44
1.0.1

|
pi  |
databases/cegobridge: 1.0.0 -> 1.0.1
- Fixes for MySQL import
Submitted by: lemke@lemke-it.com |
19 May 2015 06:23:03
1.0.0

|
pi  |
New port: databases/cegobridge (replaces databases/my2cego)
cegobridge is a tool to import/export database dumps into Cego, a
Relational Database Management System (RDBMS). Currently it supports
MySQL, other database systems to import/export can be added.
Many more details are available at:
WWW: http://www.lemke-it.com/
Submitted by: Bjorn Lemke <lemke@lemke-it.com> |