You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
TIMESTAMP namespace fixes
Namespace issues in the TIMESTAMP code caused compiling to break. This patch fixes that.
This commit is contained in:
@ -991,7 +991,7 @@ void TableInfo::reportTotals(double elapsedTime)
|
||||
"invalid date/times replaced with zero value : ";
|
||||
}
|
||||
|
||||
else if (fColumns[i].column.dataType == CalpontSystemCatalog::TIMESTAMP)
|
||||
else if (fColumns[i].column.dataType == execplan::CalpontSystemCatalog::TIMESTAMP)
|
||||
{
|
||||
ossSatCnt <<
|
||||
"invalid timestamps replaced with zero value : ";
|
||||
|
@ -448,7 +448,7 @@ inline int convertDataType(int dataType)
|
||||
break;
|
||||
|
||||
case ddlpackage::DDL_TIMESTAMP:
|
||||
calpontDataType = CalpontSystemCatalog::TIMESTAMP;
|
||||
calpontDataType = execplan::CalpontSystemCatalog::TIMESTAMP;
|
||||
break;
|
||||
|
||||
case ddlpackage::DDL_CLOB:
|
||||
|
Reference in New Issue
Block a user