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 BitTestAllImpl
|
|
|
|
{
|
|
|
|
template <typename A, typename B>
|
|
|
|
static inline UInt8 apply(A a, B b) { return (a & b) == b; }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NameBitTestAll { static constexpr auto name = "bitTestAll"; };
|
|
|
|
using FunctionBitTestAll = FunctionBitTestMany<BitTestAllImpl, NameBitTestAll>;
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2018-11-26 16:20:40 +00:00
|
|
|
void registerFunctionBitTestAll(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionBitTestAll>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|