mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
20 lines
360 B
C++
20 lines
360 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::Case::Insensitive);
|
|
}
|
|
|
|
}
|