mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +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>();
|
|
}
|
|
|
|
}
|
|
|
|
|