#include #include namespace DB { namespace { struct Log1pName { static constexpr auto name = "log1p"; }; using FunctionLog1p = FunctionMathUnary>; } void registerFunctionLog1p(FunctionFactory & factory) { factory.registerFunction(); } }