You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-298 Fix saturated date/datetime handling
Saturated DML updates would be set to NULL as were saturated cpimport values. This sets them to the zero date/datetime value.
This commit is contained in:
@ -1669,10 +1669,10 @@ void WESDHandler::onCleanupResult(int PmId, messageqcpp::SBS& Sbs) {
|
||||
switch ((*aIt).fColType)
|
||||
{
|
||||
case CalpontSystemCatalog::DATE:
|
||||
ossSatCnt << "invalid dates replaced with null: ";
|
||||
ossSatCnt << "invalid dates replaced with zero value: ";
|
||||
break;
|
||||
case CalpontSystemCatalog::DATETIME:
|
||||
ossSatCnt << "invalid date/times replaced with null: ";
|
||||
ossSatCnt << "invalid date/times replaced with zero value: ";
|
||||
break;
|
||||
case CalpontSystemCatalog::CHAR:
|
||||
ossSatCnt << "character strings truncated: ";
|
||||
|
Reference in New Issue
Block a user