You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
MCOL-392 Add DATETIME microscond support
Add initial microsecond support for DATETIME
This commit is contained in:
@@ -2977,7 +2977,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
case CalpontSystemCatalog::DATETIME:
|
||||
{
|
||||
intColVal = row.getUintField<8>(fetchColPos);
|
||||
value = DataConvert::datetimeToString(intColVal);
|
||||
value = DataConvert::datetimeToString(intColVal, colType.precision);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -3305,7 +3305,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
case CalpontSystemCatalog::DATETIME:
|
||||
{
|
||||
intColVal = row.getUintField<8>(fetchColPos);
|
||||
value = DataConvert::datetimeToString(intColVal);
|
||||
value = DataConvert::datetimeToString(intColVal, colType.precision);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user