mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
22 lines
533 B
C++
22 lines
533 B
C++
#include <Functions/hasAllAny.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class FunctionArrayHasAny : public FunctionArrayHasAllAny
|
|
{
|
|
public:
|
|
static constexpr auto name = "hasAny";
|
|
static FunctionPtr create(const Context & context) { return std::make_shared<FunctionArrayHasAny>(context); }
|
|
FunctionArrayHasAny(const Context & context) : FunctionArrayHasAllAny(context, false, name) {}
|
|
};
|
|
|
|
void registerFunctionHasAny(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionArrayHasAny>();
|
|
}
|
|
|
|
}
|