#include #include namespace DB { namespace { struct CosName { static constexpr auto name = "cos"; }; using FunctionCos = FunctionMathUnary>; } REGISTER_FUNCTION(Cos) { factory.registerFunction({}, FunctionFactory::CaseInsensitive); } }