#include #include namespace DB { namespace { struct Exp2Name { static constexpr auto name = "exp2"; }; using FunctionExp2 = FunctionMathUnary>; } void registerFunctionExp2(FunctionFactory & factory) { factory.registerFunction(); } }