#include #include namespace DB { struct BitTestAllImpl { template static inline UInt8 apply(A a, B b) { return (a & b) == b; } }; struct NameBitTestAll { static constexpr auto name = "bitTestAll"; }; using FunctionBitTestAll = FunctionBitTestMany; void registerFunctionBitTestAll(FunctionFactory & factory) { factory.registerFunction(); } }