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