× News Cego SysMT Croom Web Statistics Impressum
SysMT Logo

Cego Änderungsprotokoll

Zurück to Cego

In the following, change log entries for the managed software packages is shown

Last 10 30 100 1000 10000 entries

Last 10 log entries in change log
Category Date Version Log
cego 25.06.2025 2.52.11 Version released
cego 25.06.2025 2.52.11 Fix added in CegoQueyHelper::evalAttrCond, COMPLETE value must be returned in flArray loop and if not found PARTIAL must be returned ( return was missing )
cego 21.06.2025 2.52.10 Version released
cego 21.06.2025 2.52.10 Added tableset online check in CegoDbThread::serveRequest. This avoids query execution of any connected client during recovery phase
cego 20.06.2025 2.52.10 Improved log trace in CegoDistManager::startTableSet to log complete stack trace in case of tableset startup failure
cego 15.06.2025 2.52.9 Version released
cego 15.06.2025 2.52.9 Added duplicate check for table aliases in CegoSelect::evalReferences
cego 15.06.2025 2.52.9 In CegoSelect::getPlan, added parentJoinBuf setup for nested queries in expression list to evaluate join plan correctly ( parentJoinBuf is required for analysis in CegoQueryHelper::checkAttrCond)
cego 15.06.2025 2.52.9 Fix added in CegoDistCursor::joinSetup, for outerCond calculation, also null value comparisons are used, since leads to correct join results and can be optimized by using btrees. ( set attrCond.getFilterCond(outerSchema, false) to (outerSchema, true) for left outer and right outer join)
cego 09.06.2025 2.52.9 In CegoAdminHandler::getUserInfo, increased size of NUMREQ and NUMQUERY from 10 to 12, which could be usefulfor some long running system with many requests ( > 1000 000 000 requests )
Added pack mode in CegoClient for a better representation of large string column definitions. A number of packsize rows is analyzed and the schema is packed for minimal column length, e.g.
CGCLT > desc table t1;
+-----------+-----------+-----------+-----------+-----------+-----------+
| TABLEDESC | TABLEDESC | TABLEDESC | TABLEDESC | TABLEDESC | TABLEDESC |
|      ATTR |      TYPE |    LENGTH |       DIM |   DEFAULT |  NULLABLE |
+-----------+-----------+-----------+-----------+-----------+-----------+
|         a |       int |         4 |         0 |      null |       yes |
|         b |    string |       300 |         0 |      null |       yes |
+-----------+-----------+-----------+-----------+-----------+-----------+
2 tuples
ok ( 0.001 s )
CGCLT > select * from t1;
+-----------+-------+
|        t1 |    t1 |
|         a |     b |
+-----------+-------+
|         1 | Hello |
+-----------+-------+
1 tuples
ok ( 0.001 s )