#include #include #include #include namespace DB { struct NameLower { static constexpr auto name = "lower"; }; using FunctionLower = FunctionStringToString, NameLower>; void registerFunctionLower(FunctionFactory & factory) { factory.registerFunction(); } }