mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
38 lines
872 B
C++
38 lines
872 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionBinaryArithmetic.h>
|
|
#include <Functions/GCDLCMImpl.h>
|
|
|
|
#include <boost/integer/common_factor.hpp>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace
|
|
{
|
|
|
|
struct NameGCD { static constexpr auto name = "gcd"; };
|
|
|
|
template <typename A, typename B>
|
|
struct GCDImpl : public GCDLCMImpl<A, B, GCDImpl<A, B>, NameGCD>
|
|
{
|
|
using ResultType = typename GCDLCMImpl<A, B, GCDImpl, NameGCD>::ResultType;
|
|
|
|
static ResultType applyImpl(A a, B b)
|
|
{
|
|
using Int = typename NumberTraits::ToInteger<ResultType>::Type;
|
|
return boost::integer::gcd(Int(a), Int(b)); // NOLINT(clang-analyzer-core.UndefinedBinaryOperatorResult)
|
|
}
|
|
};
|
|
|
|
using FunctionGCD = BinaryArithmeticOverloadResolver<GCDImpl, NameGCD, false, false>;
|
|
|
|
}
|
|
|
|
void registerFunctionGCD(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionGCD>();
|
|
}
|
|
|
|
}
|