1 | #include <Functions/FunctionMathUnary.h> |
---|---|
2 | #include <Functions/FunctionFactory.h> |
3 | |
4 | namespace DB |
5 | { |
6 | |
7 | struct CbrtName { static constexpr auto name = "cbrt"; }; |
8 | using FunctionCbrt = FunctionMathUnary<UnaryFunctionVectorized<CbrtName, cbrt>>; |
9 | |
10 | void registerFunctionCbrt(FunctionFactory & factory) |
11 | { |
12 | factory.registerFunction<FunctionCbrt>(); |
13 | } |
14 | |
15 | } |
16 |