mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
26 lines
535 B
C++
26 lines
535 B
C++
#include "FunctionsStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "PositionImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct NamePosition
|
|
{
|
|
static constexpr auto name = "position";
|
|
};
|
|
|
|
using FunctionPosition = FunctionsStringSearch<PositionImpl<PositionCaseSensitiveASCII>, NamePosition>;
|
|
|
|
}
|
|
|
|
void registerFunctionPosition(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionPosition>(FunctionFactory::CaseInsensitive);
|
|
factory.registerAlias("locate", NamePosition::name, FunctionFactory::CaseInsensitive);
|
|
}
|
|
}
|