ClickHouse/src/Functions/sinh.cpp

20 lines
358 B
C++
Raw Normal View History

#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
namespace
{
struct SinhName { static constexpr auto name = "sinh"; };
using FunctionSinh = FunctionMathUnary<UnaryFunctionVectorized<SinhName, sinh>>;
}
void registerFunctionSinh(FunctionFactory & factory)
{
factory.registerFunction<FunctionSinh>();
}
}