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