mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
22 lines
408 B
C++
22 lines
408 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);
|
|
}
|
|
|
|
}
|