1 | #include <Functions/FunctionMathUnary.h> |
---|---|
2 | #include <Functions/FunctionFactory.h> |
3 | |
4 | |
5 | namespace DB |
6 | { |
7 | |
8 | struct AtanName { static constexpr auto name = "atan"; }; |
9 | using FunctionAtan = FunctionMathUnary<UnaryFunctionVectorized<AtanName, atan>>; |
10 | |
11 | void registerFunctionAtan(FunctionFactory & factory) |
12 | { |
13 | factory.registerFunction<FunctionAtan>(FunctionFactory::CaseInsensitive); |
14 | } |
15 | |
16 | } |
17 |