mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
13 lines
208 B
C++
13 lines
208 B
C++
|
#include <DB/Functions/FunctionFactory.h>
|
||
|
#include <DB/Functions/FunctionsGeo.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void registerFunctionsGeo(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionGeoDistance>();
|
||
|
}
|
||
|
}
|