mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
20 lines
358 B
C++
20 lines
358 B
C++
#include <Functions/FunctionMathUnary.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct SinName { static constexpr auto name = "sin"; };
|
|
using FunctionSin = FunctionMathUnary<UnaryFunctionVectorized<SinName, sin>>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(Sin)
|
|
{
|
|
factory.registerFunction<FunctionSin>({}, FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|