2021-08-26 12:34:46 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
2022-01-20 23:39:05 +00:00
|
|
|
#include <Functions/FunctionMathBinaryFloat64.h>
|
2021-08-26 12:34:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace
|
|
|
|
{
|
2022-01-20 23:39:05 +00:00
|
|
|
struct Min2Name
|
|
|
|
{
|
|
|
|
static constexpr auto name = "min2";
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T min(T a, T b)
|
|
|
|
{
|
|
|
|
return a < b ? a : b;
|
|
|
|
}
|
|
|
|
|
2021-08-26 12:34:46 +00:00
|
|
|
using FunctionMin2 = FunctionMathBinaryFloat64<BinaryFunctionVectorized<Min2Name, min>>;
|
|
|
|
}
|
|
|
|
|
|
|
|
void registerFunctionMin2(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionMin2>(FunctionFactory::CaseInsensitive);
|
|
|
|
}
|
|
|
|
}
|