2020-03-29 17:04:16 +00:00
|
|
|
#include "FunctionsStringSearch.h"
|
|
|
|
#include "FunctionFactory.h"
|
|
|
|
#include "PositionImpl.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2020-03-29 17:04:16 +00:00
|
|
|
|
|
|
|
struct NamePositionCaseInsensitiveUTF8
|
|
|
|
{
|
|
|
|
static constexpr auto name = "positionCaseInsensitiveUTF8";
|
|
|
|
};
|
|
|
|
|
|
|
|
using FunctionPositionCaseInsensitiveUTF8
|
|
|
|
= FunctionsStringSearch<PositionImpl<PositionCaseInsensitiveUTF8>, NamePositionCaseInsensitiveUTF8>;
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 17:04:16 +00:00
|
|
|
void registerFunctionPositionCaseInsensitiveUTF8(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionPositionCaseInsensitiveUTF8>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|