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