mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 11:52:27 +00:00
15 lines
315 B
C++
15 lines
315 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsFindCluster.h>
|
|
#include "registerFunctions.h"
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionsFindCluster(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionFindClusterIndex>();
|
|
factory.registerFunction<FunctionFindClusterValue>();
|
|
}
|
|
|
|
}
|