mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
19 lines
324 B
C++
19 lines
324 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToDateOrDate32.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToMonday = FunctionDateOrDateTimeToDateOrDate32<ToMondayImpl>;
|
|
|
|
REGISTER_FUNCTION(ToMonday)
|
|
{
|
|
factory.registerFunction<FunctionToMonday>();
|
|
}
|
|
|
|
}
|
|
|
|
|