mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
13 lines
194 B
C++
13 lines
194 B
C++
#include "FunctionHashID.h"
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionHashID(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionHashID>();
|
|
}
|
|
|
|
}
|