blob: 3496373a9d527be8511ca7c07158a5f10d86fb9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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);
}
}
|