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