ClickHouse/dbms/src/Functions/FunctionsGeo.cpp

14 lines
270 B
C++
Raw Normal View History

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