mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
15 lines
449 B
C++
15 lines
449 B
C++
|
#include <Functions/FunctionsWindow.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
void registerFunctionsWindow(FunctionFactory& factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionTumble>();
|
||
|
factory.registerFunction<FunctionHop>();
|
||
|
factory.registerFunction<FunctionTumbleStart>();
|
||
|
factory.registerFunction<FunctionTumbleEnd>();
|
||
|
factory.registerFunction<FunctionHopStart>();
|
||
|
factory.registerFunction<FunctionHopEnd>();
|
||
|
}
|
||
|
}
|