mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +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 HypotName
|
|
{
|
|
static constexpr auto name = "hypot";
|
|
};
|
|
using FunctionHypot = FunctionMathBinaryFloat64<BinaryFunctionVectorized<HypotName, hypot>>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(Hypot)
|
|
{
|
|
factory.registerFunction<FunctionHypot>(FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|