mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
21 lines
489 B
C++
21 lines
489 B
C++
#include "FunctionsStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "PositionImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NamePositionCaseInsensitive
|
|
{
|
|
static constexpr auto name = "positionCaseInsensitive";
|
|
};
|
|
|
|
using FunctionPositionCaseInsensitive = FunctionsStringSearch<PositionImpl<PositionCaseInsensitiveASCII>, NamePositionCaseInsensitive>;
|
|
|
|
void registerFunctionPositionCaseInsensitive(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionPositionCaseInsensitive>();
|
|
}
|
|
}
|