mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
22 lines
532 B
C++
22 lines
532 B
C++
#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) {}
|
|
};
|
|
|
|
void registerFunctionHasAll(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionArrayHasAll>();
|
|
}
|
|
|
|
}
|