ClickHouse/src/Functions/log10.cpp
2022-08-27 22:06:57 +02:00

20 lines
372 B
C++

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