mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
28 lines
538 B
C++
28 lines
538 B
C++
#include "FunctionsMultiStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "MultiMatchAnyImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct NameMultiMatchAnyIndex
|
|
{
|
|
static constexpr auto name = "multiMatchAnyIndex";
|
|
};
|
|
|
|
using FunctionMultiMatchAnyIndex = FunctionsMultiStringSearch<
|
|
MultiMatchAnyImpl<NameMultiMatchAnyIndex, UInt64, false, true, false>,
|
|
std::numeric_limits<UInt32>::max()>;
|
|
|
|
}
|
|
|
|
void registerFunctionMultiMatchAnyIndex(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionMultiMatchAnyIndex>();
|
|
}
|
|
|
|
}
|