ClickHouse/dbms/Functions/log2.cpp

16 lines
375 B
C++
Raw Normal View History

2019-08-01 00:29:32 +00:00
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
struct Log2Name { static constexpr auto name = "log2"; };
2019-08-01 00:29:32 +00:00
using FunctionLog2 = FunctionMathUnary<UnaryFunctionVectorized<Log2Name, log2>>;
void registerFunctionLog2(FunctionFactory & factory)
{
factory.registerFunction<FunctionLog2>(FunctionFactory::CaseInsensitive);
}
}