2019-08-01 00:29:32 +00:00
|
|
|
#include <Functions/FunctionMathUnary.h>
|
2018-12-03 03:17:06 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-12-03 03:17:06 +00:00
|
|
|
|
|
|
|
struct SinName { static constexpr auto name = "sin"; };
|
2019-08-01 00:29:32 +00:00
|
|
|
using FunctionSin = FunctionMathUnary<UnaryFunctionVectorized<SinName, sin>>;
|
2018-12-03 03:17:06 +00:00
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(Sin)
|
2018-12-03 03:17:06 +00:00
|
|
|
{
|
2024-03-06 11:10:02 +00:00
|
|
|
factory.registerFunction<FunctionSin>(
|
|
|
|
FunctionDocumentation{
|
|
|
|
.description = "Returns the sine of the argument.",
|
|
|
|
.syntax = "sin(x)",
|
|
|
|
.arguments = {{"x", "The number whose sine will be returned. (U)Int*, Float* or Decimal*."}},
|
|
|
|
.returned_value = "The sine of x.",
|
|
|
|
.examples = {{.name = "simple", .query = "SELECT sin(1.23)", .result = "0.9424888019316975"}},
|
|
|
|
.categories{"Mathematical", "Trigonometric"}},
|
|
|
|
FunctionFactory::CaseInsensitive);
|
2018-12-03 03:17:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|