2018-09-08 22:04:39 +00:00
|
|
|
#include <Functions/FunctionNumericPredicate.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
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;
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
using FunctionIsNaN = FunctionNumericPredicate<IsNaNImpl>;
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
2018-09-08 22:04:39 +00:00
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(IsNaN)
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionIsNaN>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|