mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
18 lines
427 B
C++
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>();
|
|
}
|
|
}
|