mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
26 lines
510 B
C++
26 lines
510 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<NamePosition, PositionCaseSensitiveASCII>>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(Position)
|
|
{
|
|
factory.registerFunction<FunctionPosition>({}, FunctionFactory::CaseInsensitive);
|
|
factory.registerAlias("locate", NamePosition::name, FunctionFactory::CaseInsensitive);
|
|
}
|
|
}
|