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