ClickHouse/dbms/src/Functions/tan.cpp

16 lines
368 B
C++
Raw Normal View History

2019-08-01 00:29:32 +00:00
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
struct TanName { static constexpr auto name = "tan"; };
2019-08-01 00:29:32 +00:00
using FunctionTan = FunctionMathUnary<UnaryFunctionVectorized<TanName, tan>>;
void registerFunctionTan(FunctionFactory & factory)
{
factory.registerFunction<FunctionTan>(FunctionFactory::CaseInsensitive);
}
}