#include #include namespace DB { struct BitTestAnyImpl { template static inline UInt8 apply(A a, B b) { return (a & b) != 0; } }; struct NameBitTestAny { static constexpr auto name = "bitTestAny"; }; using FunctionBitTestAny = FunctionBitTestMany; void registerFunctionBitTestAny(FunctionFactory & factory) { factory.registerFunction(); } }