mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
22 lines
388 B
C++
22 lines
388 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionMathUnary.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
struct AsinhName
|
|
{
|
|
static constexpr auto name = "asinh";
|
|
};
|
|
using FunctionAsinh = FunctionMathUnary<UnaryFunctionVectorized<AsinhName, asinh>>;
|
|
|
|
}
|
|
|
|
void registerFunctionAsinh(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionAsinh>();
|
|
}
|
|
|
|
}
|