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