mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
24 lines
589 B
C++
24 lines
589 B
C++
|
#include "FunctionsMultiStringSearch.h"
|
||
|
#include "FunctionFactory.h"
|
||
|
#include "MultiSearchImpl.h"
|
||
|
#include "PositionImpl.h"
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NameMultiSearchAnyCaseInsensitiveUTF8
|
||
|
{
|
||
|
static constexpr auto name = "multiSearchAnyCaseInsensitiveUTF8";
|
||
|
};
|
||
|
|
||
|
using FunctionMultiSearchCaseInsensitiveUTF8
|
||
|
= FunctionsMultiStringSearch<MultiSearchImpl<PositionCaseInsensitiveUTF8>, NameMultiSearchAnyCaseInsensitiveUTF8>;
|
||
|
|
||
|
void registerFunctionMultiSearchAnyCaseInsensitiveUTF8(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionMultiSearchCaseInsensitiveUTF8>();
|
||
|
}
|
||
|
|
||
|
}
|