#include #include namespace DB { class FunctionArrayHasAny : public FunctionArrayHasAllAny { public: static constexpr auto name = "hasAny"; static FunctionPtr create(const Context & context) { return std::make_shared(context); } FunctionArrayHasAny(const Context & context) : FunctionArrayHasAllAny(context, false, name) {} }; void registerFunctionHasAny(FunctionFactory & factory) { factory.registerFunction(); } }