ClickHouse/dbms/src/Functions/registerFunction.cpp.in
2018-06-19 21:09:09 +03:00

15 lines
239 B
C++

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