mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
18 lines
329 B
C++
18 lines
329 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionsRandom.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NameRand64 { static constexpr auto name = "rand64"; };
|
||
|
using FunctionRand64 = FunctionRandom<UInt64, NameRand64>;
|
||
|
|
||
|
void registerFunctionRand64(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionRand64>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|