mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 01:12:12 +00:00
25 lines
583 B
C++
25 lines
583 B
C++
|
#include "FunctionsStringSearch.h"
|
||
|
#include "FunctionFactory.h"
|
||
|
#include "CountSubstringsImpl.h"
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
namespace
|
||
|
{
|
||
|
|
||
|
struct NameCountSubstringsCaseInsensitiveUTF8
|
||
|
{
|
||
|
static constexpr auto name = "countSubstringsCaseInsensitiveUTF8";
|
||
|
};
|
||
|
|
||
|
using FunctionCountSubstringsCaseInsensitiveUTF8 = FunctionsStringSearch<CountSubstringsImpl<PositionCaseInsensitiveUTF8>, NameCountSubstringsCaseInsensitiveUTF8>;
|
||
|
|
||
|
}
|
||
|
|
||
|
void registerFunctionCountSubstringsCaseInsensitiveUTF8(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionCountSubstringsCaseInsensitiveUTF8>();
|
||
|
}
|
||
|
}
|