2018-09-09 20:57:54 +00:00
|
|
|
#include <Functions/hasAllAny.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class FunctionArrayHasAll : public FunctionArrayHasAllAny
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "hasAll";
|
|
|
|
static FunctionPtr create(const Context & context) { return std::make_shared<FunctionArrayHasAll>(context); }
|
|
|
|
FunctionArrayHasAll(const Context & context) : FunctionArrayHasAllAny(context, true, name) {}
|
|
|
|
};
|
|
|
|
|
2018-09-10 00:51:08 +00:00
|
|
|
void registerFunctionHasAll(FunctionFactory & factory)
|
2018-09-09 20:57:54 +00:00
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionArrayHasAll>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|