#include #include namespace DB { namespace { struct CbrtName { static constexpr auto name = "cbrt"; }; using FunctionCbrt = FunctionMathUnary>; } REGISTER_FUNCTION(Cbrt) { factory.registerFunction(); } }