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
|
|
|
}
|
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(Rand)
|
2018-12-02 01:57:01 +00:00
|
|
|
{
|
2022-08-27 20:06:03 +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
|
|
|
}
|
|
|
|
|
|
|
|
}
|