ClickHouse/dbms/src/Functions/FunctionsGeo.cpp

14 lines
276 B
C++
Raw Normal View History

2016-08-12 16:51:08 +00:00
#include <DB/Functions/FunctionFactory.h>
#include <DB/Functions/FunctionsGeo.h>
namespace DB
{
void registerFunctionsGeo(FunctionFactory & factory)
{
factory.registerFunction<FunctionGreatCircleDistance>();
factory.registerFunction<FunctionPointInEllipses>();
2016-08-12 16:51:08 +00:00
}
}