#include #include namespace DB { namespace { struct PowName { static constexpr auto name = "pow"; }; using FunctionPow = FunctionMathBinaryFloat64>; } REGISTER_FUNCTION(Pow) { factory.registerFunction(FunctionFactory::CaseInsensitive); factory.registerAlias("power", "pow", FunctionFactory::CaseInsensitive); } }