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