ClickHouse/src/Functions/sin.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
358 B
C++
Raw Normal View History

2019-08-01 00:29:32 +00:00
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
struct SinName { static constexpr auto name = "sin"; };
2019-08-01 00:29:32 +00:00
using FunctionSin = FunctionMathUnary<UnaryFunctionVectorized<SinName, sin>>;
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(Sin)
{
2022-08-27 20:06:03 +00:00
factory.registerFunction<FunctionSin>({}, FunctionFactory::CaseInsensitive);
}
}