ClickHouse/src/Functions/FunctionsHashingInt.cpp
Nikolay Degterinsky fb6838b043 Review suggestions
2023-01-24 22:54:01 +00:00

18 lines
427 B
C++

#include "FunctionsHashing.h"
#include <Functions/FunctionFactory.h>
/// FunctionsHashing instantiations are separated into files FunctionsHashing*.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.
namespace DB
{
REGISTER_FUNCTION(HashingInt)
{
factory.registerFunction<FunctionIntHash32>();
factory.registerFunction<FunctionIntHash64>();
}
}