mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
19 lines
356 B
C++
19 lines
356 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToDateOrDate32.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToStartOfQuarter = FunctionDateOrDateTimeToDateOrDate32<ToStartOfQuarterImpl>;
|
|
|
|
REGISTER_FUNCTION(ToStartOfQuarter)
|
|
{
|
|
factory.registerFunction<FunctionToStartOfQuarter>();
|
|
}
|
|
|
|
}
|
|
|
|
|