mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
20 lines
358 B
C++
20 lines
358 B
C++
|
#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>();
|
||
|
}
|
||
|
|
||
|
}
|