mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
28 lines
507 B
C++
28 lines
507 B
C++
#include "FunctionsMultiStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "MultiMatchAnyImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct NameMultiMatchAny
|
|
{
|
|
static constexpr auto name = "multiMatchAny";
|
|
};
|
|
|
|
using FunctionMultiMatchAny = FunctionsMultiStringSearch<
|
|
MultiMatchAnyImpl<NameMultiMatchAny, UInt8, true, false, false>,
|
|
std::numeric_limits<UInt32>::max()>;
|
|
|
|
}
|
|
|
|
void registerFunctionMultiMatchAny(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionMultiMatchAny>();
|
|
}
|
|
|
|
}
|