ClickHouse/src/Functions/FunctionHashID.cpp

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

13 lines
165 B
C++
Raw Normal View History

2022-05-07 01:25:20 +00:00
#include "FunctionHashID.h"
#include <Functions/FunctionFactory.h>
namespace DB
{
REGISTER_FUNCTION(HashID)
2022-05-07 01:25:20 +00:00
{
factory.registerFunction<FunctionHashID>();
}
2022-05-07 01:25:20 +00:00
}