mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
25 lines
535 B
C++
25 lines
535 B
C++
#include "FunctionsMultiStringFuzzySearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "MultiMatchAnyImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameMultiFuzzyMatchAny
|
|
{
|
|
static constexpr auto name = "multiFuzzyMatchAny";
|
|
};
|
|
|
|
using FunctionMultiFuzzyMatchAny = FunctionsMultiStringFuzzySearch<
|
|
MultiMatchAnyImpl<UInt8, true, false, true>,
|
|
NameMultiFuzzyMatchAny,
|
|
std::numeric_limits<UInt32>::max()>;
|
|
|
|
void registerFunctionMultiFuzzyMatchAny(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionMultiFuzzyMatchAny>();
|
|
}
|
|
|
|
}
|