mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
f6c264b70b
* Every function in its own file, part 9 [#CLICKHOUSE-2] * Every function in its own file, part 9 [#CLICKHOUSE-2]
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);
|
|
}
|
|
|
|
}
|