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:
@ -73,10 +73,10 @@ int64_t Func_time_to_sec::getIntVal(rowgroup::Row& row,
|
||||
case CalpontSystemCatalog::TIMESTAMP:
|
||||
{
|
||||
val = parm[0]->data()->getIntVal(row, isNull);
|
||||
TimeStamp timestamp(val);
|
||||
dataconvert::TimeStamp timestamp(val);
|
||||
int64_t seconds = timestamp.second;
|
||||
MySQLTime time;
|
||||
gmtSecToMySQLTime(seconds, time, fTimeZone);
|
||||
dataconvert::MySQLTime time;
|
||||
dataconvert::gmtSecToMySQLTime(seconds, time, fTimeZone);
|
||||
hour = time.hour;
|
||||
min = time.minute;
|
||||
sec = time.second;
|
||||
|
Reference in New Issue
Block a user