mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
17 lines
456 B
C++
17 lines
456 B
C++
|
#include <Functions/FunctionMathUnaryFloat64.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct LogName { static constexpr auto name = "log"; };
|
||
|
using FunctionLog = FunctionMathUnaryFloat64<UnaryFunctionVectorized<LogName, log>>;
|
||
|
|
||
|
void registerFunctionLog(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionLog>(FunctionFactory::CaseInsensitive);
|
||
|
factory.registerAlias("ln", "log", FunctionFactory::CaseInsensitive);
|
||
|
}
|
||
|
|
||
|
}
|