mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 11:52:27 +00:00
16 lines
382 B
C++
16 lines
382 B
C++
![]() |
#include <Functions/FunctionMathUnaryFloat64.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct SinName { static constexpr auto name = "sin"; };
|
||
|
using FunctionSin = FunctionMathUnaryFloat64<UnaryFunctionVectorized<SinName, sin>>;
|
||
|
|
||
|
void registerFunctionSin(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionSin>(FunctionFactory::CaseInsensitive);
|
||
|
}
|
||
|
|
||
|
}
|