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