1#include <Functions/FunctionFactory.h>
2#include <Functions/FunctionsRandom.h>
3
4namespace DB
5{
6
7struct NameRand64 { static constexpr auto name = "rand64"; };
8using FunctionRand64 = FunctionRandom<UInt64, NameRand64>;
9
10void registerFunctionRand64(FunctionFactory & factory)
11{
12 factory.registerFunction<FunctionRand64>();
13}
14
15}
16
17
18