ClickHouse/src/Functions/FunctionsHashingInt.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
427 B
C++
Raw Normal View History

2023-01-23 14:38:07 +00:00
#include "FunctionsHashing.h"
#include <Functions/FunctionFactory.h>
2023-01-24 22:52:55 +00:00
/// FunctionsHashing instantiations are separated into files FunctionsHashing*.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.
2023-01-23 14:38:07 +00:00
namespace DB
{
REGISTER_FUNCTION(HashingInt)
{
factory.registerFunction<FunctionIntHash32>();
factory.registerFunction<FunctionIntHash64>();
}
}