2018-12-02 01:57:01 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionsRandom.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-12-02 01:57:01 +00:00
|
|
|
|
|
|
|
struct NameRand { static constexpr auto name = "rand"; };
|
|
|
|
using FunctionRand = FunctionRandom<UInt32, NameRand>;
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 01:57:01 +00:00
|
|
|
void registerFunctionRand(FunctionFactory & factory)
|
|
|
|
{
|
2018-12-19 14:46:18 +00:00
|
|
|
factory.registerFunction<FunctionRand>(FunctionFactory::CaseInsensitive);
|
2020-05-25 01:03:30 +00:00
|
|
|
factory.registerAlias("rand32", NameRand::name);
|
2018-12-02 01:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|