2020-01-14 03:08:54 +00:00
|
|
|
#include <Functions/FunctionsWindow.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
void registerFunctionsWindow(FunctionFactory& factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionTumble>();
|
|
|
|
factory.registerFunction<FunctionHop>();
|
2020-06-08 06:27:30 +00:00
|
|
|
factory.registerFunction<FunctionHopSlice>();
|
2020-01-14 03:08:54 +00:00
|
|
|
factory.registerFunction<FunctionTumbleStart>();
|
|
|
|
factory.registerFunction<FunctionTumbleEnd>();
|
|
|
|
factory.registerFunction<FunctionHopStart>();
|
|
|
|
factory.registerFunction<FunctionHopEnd>();
|
|
|
|
}
|
2020-01-14 16:24:26 +00:00
|
|
|
}
|