#include #include namespace DB { namespace { struct AtanhName { static constexpr auto name = "atanh"; }; using FunctionAtanh = FunctionMathUnary>; } void registerFunctionAtanh(FunctionFactory & factory) { factory.registerFunction(); } }