ClickHouse/src/Functions/isNaN.cpp

31 lines
498 B
C++
Raw Normal View History

#include <Functions/FunctionNumericPredicate.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
struct IsNaNImpl
{
static constexpr auto name = "isNaN";
template <typename T>
static bool execute(const T t)
{
/// Suppression for PVS-Studio.
return t != t; //-V501
}
};
using FunctionIsNaN = FunctionNumericPredicate<IsNaNImpl>;
2020-09-07 18:00:37 +00:00
}
void registerFunctionIsNaN(FunctionFactory & factory)
{
factory.registerFunction<FunctionIsNaN>();
}
}