ClickHouse/src/Functions/atan.cpp

21 lines
391 B
C++
Raw Normal View History

2019-08-01 00:29:32 +00:00
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
2019-12-29 01:13:17 +00:00
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
struct AtanName { static constexpr auto name = "atan"; };
2019-08-01 00:29:32 +00:00
using FunctionAtan = FunctionMathUnary<UnaryFunctionVectorized<AtanName, atan>>;
2020-09-07 18:00:37 +00:00
}
void registerFunctionAtan(FunctionFactory & factory)
{
factory.registerFunction<FunctionAtan>(FunctionFactory::CaseInsensitive);
}
}