ClickHouse/src/Functions/atan.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
366 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
}
REGISTER_FUNCTION(Atan)
{
2022-08-27 20:06:03 +00:00
factory.registerFunction<FunctionAtan>({}, FunctionFactory::CaseInsensitive);
}
}