#include #include namespace DB { namespace { struct NameRand { static constexpr auto name = "rand"; }; using FunctionRand = FunctionRandom; } void registerFunctionRand(FunctionFactory & factory) { factory.registerFunction(FunctionFactory::CaseInsensitive); factory.registerAlias("rand32", NameRand::name); } }