mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
28 lines
484 B
C++
28 lines
484 B
C++
#include <Functions/FunctionNumericPredicate.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
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>;
|
|
|
|
|
|
void registerFunctionIsNaN(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionIsNaN>();
|
|
}
|
|
|
|
}
|