ClickHouse/dbms/Functions/toStartOfDay.cpp

21 lines
457 B
C++
Raw Normal View History

#include <Functions/IFunctionImpl.h>
#include <Functions/FunctionFactory.h>
#include <Functions/DateTimeTransforms.h>
#include <Functions/FunctionDateOrDateTimeToSomething.h>
#include <DataTypes/DataTypesNumber.h>
namespace DB
{
using FunctionToStartOfDay = FunctionDateOrDateTimeToSomething<DataTypeDateTime, ToStartOfDayImpl>;
void registerFunctionToStartOfDay(FunctionFactory & factory)
{
factory.registerFunction<FunctionToStartOfDay>();
}
}