mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
17 lines
393 B
C++
17 lines
393 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToStartOfSecond = FunctionDateOrDateTimeToSomething<DataTypeDateTime64, ToStartOfSecondImpl>;
|
|
|
|
void registerFunctionToStartOfSecond(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionToStartOfSecond>();
|
|
}
|
|
|
|
}
|