mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
18 lines
317 B
C++
18 lines
317 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionAddQuarters = FunctionDateOrDateTimeAddInterval<AddQuartersImpl>;
|
||
|
|
||
|
void registerFunctionAddQuarters(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionAddQuarters>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|