mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
27 lines
580 B
C++
27 lines
580 B
C++
#include "FunctionsMultiStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "MultiSearchImpl.h"
|
|
#include "PositionImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct NameMultiSearchAnyCaseInsensitive
|
|
{
|
|
static constexpr auto name = "multiSearchAnyCaseInsensitive";
|
|
};
|
|
using FunctionMultiSearchCaseInsensitive
|
|
= FunctionsMultiStringSearch<MultiSearchImpl<PositionCaseInsensitiveASCII>, NameMultiSearchAnyCaseInsensitive>;
|
|
|
|
}
|
|
|
|
void registerFunctionMultiSearchAnyCaseInsensitive(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionMultiSearchCaseInsensitive>();
|
|
}
|
|
|
|
}
|