ClickHouse/dbms/src/Functions/registerFunctionsConsistentHashing.cpp

19 lines
475 B
C++
Raw Normal View History

namespace DB
2019-12-29 01:13:17 +00:00
{
2019-12-29 01:13:17 +00:00
class FunctionFactory;
void registerFunctionYandexConsistentHash(FunctionFactory & factory);
void registerFunctionJumpConsistentHash(FunctionFactory & factory);
void registerFunctionSumburConsistentHash(FunctionFactory & factory);
void registerFunctionsConsistentHashing(FunctionFactory & factory)
{
registerFunctionYandexConsistentHash(factory);
registerFunctionJumpConsistentHash(factory);
registerFunctionSumburConsistentHash(factory);
}
}