ClickHouse/dbms/src/Functions/registerFunction.cpp.in

15 lines
249 B
C++

#include <Functions/register@FUNCTION@.h>
#include <Functions/FunctionFactory.h>
#include <Functions/Functions@FUNCTION_AREA@.h>
namespace DB
{
void register@FUNCTION@(FunctionFactory & factory)
{
factory.registerFunction<@FUNCTION@>();
}
}