mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
28 lines
551 B
C++
28 lines
551 B
C++
#include "FunctionsMultiStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "MultiMatchAllIndicesImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct NameMultiMatchAllIndices
|
|
{
|
|
static constexpr auto name = "multiMatchAllIndices";
|
|
};
|
|
|
|
using FunctionMultiMatchAllIndices = FunctionsMultiStringSearch<
|
|
MultiMatchAllIndicesImpl<NameMultiMatchAllIndices, UInt64, false>,
|
|
std::numeric_limits<UInt32>::max()>;
|
|
|
|
}
|
|
|
|
void registerFunctionMultiMatchAllIndices(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionMultiMatchAllIndices>();
|
|
}
|
|
|
|
}
|