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
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
#include <Functions/FunctionNumericPredicate.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <ext/bit_cast.h>
|
|
#include <type_traits>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct IsInfiniteImpl
|
|
{
|
|
static constexpr auto name = "isInfinite";
|
|
template <typename T>
|
|
static bool execute(const T t)
|
|
{
|
|
if constexpr (std::is_same_v<T, float>)
|
|
return (ext::bit_cast<uint32_t>(t)
|
|
& 0b01111111111111111111111111111111)
|
|
== 0b01111111100000000000000000000000;
|
|
else if constexpr (std::is_same_v<T, double>)
|
|
return (ext::bit_cast<uint64_t>(t)
|
|
& 0b0111111111111111111111111111111111111111111111111111111111111111)
|
|
== 0b0111111111110000000000000000000000000000000000000000000000000000;
|
|
else
|
|
{
|
|
(void)t;
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
|
|
using FunctionIsInfinite = FunctionNumericPredicate<IsInfiniteImpl>;
|
|
|
|
|
|
void registerFunctionIsInfinite(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionIsInfinite>();
|
|
}
|
|
|
|
}
|