aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/sin.cpp
blob: dc75f4800c0e81f6380999de5bea0381b264b3d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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);
}

}