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