ClickHouse/src/Functions/isNaN.cpp

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

30 lines
420 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)
{
2023-02-19 22:15:09 +00:00
return t != t;
}
};
using FunctionIsNaN = FunctionNumericPredicate<IsNaNImpl>;
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(IsNaN)
{
factory.registerFunction<FunctionIsNaN>();
}
}