#include #include namespace DB { namespace { struct AtanName { static constexpr auto name = "atan"; }; using FunctionAtan = FunctionMathUnary>; } void registerFunctionAtan(FunctionFactory & factory) { factory.registerFunction(FunctionFactory::CaseInsensitive); } }