mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 08:52:06 +00:00
23 lines
517 B
C++
23 lines
517 B
C++
|
#include "FunctionsStringSearch.h"
|
||
|
#include "FunctionFactory.h"
|
||
|
#include "PositionImpl.h"
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NamePositionCaseInsensitiveUTF8
|
||
|
{
|
||
|
static constexpr auto name = "positionCaseInsensitiveUTF8";
|
||
|
};
|
||
|
|
||
|
using FunctionPositionCaseInsensitiveUTF8
|
||
|
= FunctionsStringSearch<PositionImpl<PositionCaseInsensitiveUTF8>, NamePositionCaseInsensitiveUTF8>;
|
||
|
|
||
|
void registerFunctionPositionCaseInsensitiveUTF8(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionPositionCaseInsensitiveUTF8>();
|
||
|
}
|
||
|
|
||
|
}
|