2020-03-29 17:04:16 +00:00
|
|
|
#include "FunctionsStringSearch.h"
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include "HasTokenImpl.h"
|
|
|
|
#include <Common/Volnitsky.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2020-03-29 17:04:16 +00:00
|
|
|
|
|
|
|
struct NameHasTokenCaseInsensitive
|
|
|
|
{
|
|
|
|
static constexpr auto name = "hasTokenCaseInsensitive";
|
|
|
|
};
|
|
|
|
|
|
|
|
using FunctionHasTokenCaseInsensitive
|
|
|
|
= FunctionsStringSearch<HasTokenImpl<VolnitskyCaseInsensitiveToken, false>, NameHasTokenCaseInsensitive>;
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 17:04:16 +00:00
|
|
|
void registerFunctionHasTokenCaseInsensitive(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionHasTokenCaseInsensitive>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|