mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
20 lines
358 B
C++
20 lines
358 B
C++
#include <Functions/FunctionMathUnary.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct Exp2Name { static constexpr auto name = "exp2"; };
|
|
using FunctionExp2 = FunctionMathUnary<UnaryFunctionVectorized<Exp2Name, exp2>>;
|
|
|
|
}
|
|
|
|
void registerFunctionExp2(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionExp2>();
|
|
}
|
|
|
|
}
|