ClickHouse/src/Functions/min2.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
493 B
C++
Raw Normal View History

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>>;
}
REGISTER_FUNCTION(Min2)
2021-08-26 12:34:46 +00:00
{
2022-08-27 20:06:03 +00:00
factory.registerFunction<FunctionMin2>({}, FunctionFactory::CaseInsensitive);
2021-08-26 12:34:46 +00:00
}
}