mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
20 lines
438 B
C++
20 lines
438 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToRelativeWeekNum = FunctionDateOrDateTimeToSomething<DataTypeUInt32, ToRelativeWeekNumImpl>;
|
|
|
|
void registerFunctionToRelativeWeekNum(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionToRelativeWeekNum>();
|
|
}
|
|
|
|
}
|
|
|
|
|