1 | #include <Functions/FunctionFactory.h> |
---|---|
2 | #include <Functions/FunctionsFindCluster.h> |
3 | |
4 | |
5 | namespace DB |
6 | { |
7 | |
8 | void registerFunctionsFindCluster(FunctionFactory & factory) |
9 | { |
10 | factory.registerFunction<FunctionFindClusterIndex>(); |
11 | factory.registerFunction<FunctionFindClusterValue>(); |
12 | } |
13 | |
14 | } |
15 |