ClickHouse/dbms/src/Functions/registerFunctionsConsistentHashing.cpp

12 lines
271 B
C++
Raw Normal View History

2019-12-15 06:34:43 +00:00
#include "registerFunctions.h"
namespace DB
{
void registerFunctionsConsistentHashing(FunctionFactory & factory)
{
registerFunctionYandexConsistentHash(factory);
registerFunctionJumpConsistentHash(factory);
registerFunctionSumburConsistentHash(factory);
}
}