mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
22 lines
412 B
C++
22 lines
412 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionMathBinaryFloat64.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
struct Atan2Name
|
|
{
|
|
static constexpr auto name = "atan2";
|
|
};
|
|
using FunctionAtan2 = FunctionMathBinaryFloat64<BinaryFunctionVectorized<Atan2Name, atan2>>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(Atan2)
|
|
{
|
|
factory.registerFunction<FunctionAtan2>({}, FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|