mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
19 lines
357 B
C++
19 lines
357 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToTime = FunctionDateOrDateTimeToSomething<DataTypeDateTime, ToTimeImpl>;
|
|
|
|
void registerFunctionToTime(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionToTime>();
|
|
}
|
|
|
|
}
|
|
|
|
|