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-392 Add initial TIME datatype support
This commit is contained in:
@ -143,6 +143,15 @@ bool getUIntValFromParm(
|
||||
}
|
||||
break;
|
||||
|
||||
case execplan::CalpontSystemCatalog::TIME:
|
||||
{
|
||||
int64_t time = parm->data()->getTimeIntVal(row, isNull);
|
||||
|
||||
Time dt(time);
|
||||
value = dt.convertToMySQLint();
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
{
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user