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