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