#include #include namespace DB { namespace { struct CoshName { static constexpr auto name = "cosh"; }; using FunctionCosh = FunctionMathUnary>; } void registerFunctionCosh(FunctionFactory & factory) { factory.registerFunction(); } }