mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
21 lines
412 B
C++
21 lines
412 B
C++
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToDateTimeOrDateTime64.h>
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionTimeSlot = FunctionDateOrDateTimeToDateTimeOrDateTime64<TimeSlotImpl>;
|
|
|
|
REGISTER_FUNCTION(TimeSlot)
|
|
{
|
|
factory.registerFunction<FunctionTimeSlot>();
|
|
}
|
|
|
|
}
|
|
|
|
|