mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
17 lines
348 B
C++
17 lines
348 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsRandom.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameRand { static constexpr auto name = "rand"; };
|
|
using FunctionRand = FunctionRandom<UInt32, NameRand>;
|
|
|
|
void registerFunctionRand(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionRand>(FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|
|
|