mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
20 lines
372 B
C++
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);
|
|
}
|
|
|
|
}
|