#include #include namespace DB { namespace { struct Log10Name { static constexpr auto name = "log10"; }; using FunctionLog10 = FunctionMathUnary>; } REGISTER_FUNCTION(Log10) { factory.registerFunction({}, FunctionFactory::CaseInsensitive); } }