#include #include namespace DB { namespace { struct HypotName { static constexpr auto name = "hypot"; }; using FunctionHypot = FunctionMathBinaryFloat64>; } void registerFunctionHypot(FunctionFactory & factory) { factory.registerFunction(FunctionFactory::CaseInsensitive); } }