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