ClickHouse/src/Functions/rand64.cpp

18 lines
329 B
C++
Raw Normal View History

#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>();
}
}