ClickHouse/dbms/Functions/bitTestAll.cpp
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

22 lines
499 B
C++

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionBitTestMany.h>
namespace DB
{
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>;
void registerFunctionBitTestAll(FunctionFactory & factory)
{
factory.registerFunction<FunctionBitTestAll>();
}
}