ClickHouse/src/Functions/rand.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
390 B
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsRandom.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
struct NameRand { static constexpr auto name = "rand"; };
using FunctionRand = FunctionRandom<UInt32, NameRand>;
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(Rand)
{
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);
}
}