2018-11-26 16:20:40 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionBitTestMany.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-11-26 16:20:40 +00:00
|
|
|
|
|
|
|
struct BitTestAnyImpl
|
|
|
|
{
|
|
|
|
template <typename A, typename B>
|
|
|
|
static inline UInt8 apply(A a, B b) { return (a & b) != 0; }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NameBitTestAny { static constexpr auto name = "bitTestAny"; };
|
|
|
|
using FunctionBitTestAny = FunctionBitTestMany<BitTestAnyImpl, NameBitTestAny>;
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(BitTestAny)
|
2018-11-26 16:20:40 +00:00
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionBitTestAny>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|