mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
14 lines
270 B
C++
14 lines
270 B
C++
#include <DB/Functions/FunctionFactory.h>
|
|
#include <DB/Functions/FunctionsGeo.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionsGeo(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionGreatCircleDistance>();
|
|
factory.registerFunction<FunctionPointInEllipses>();
|
|
}
|
|
}
|