aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/hasSubsequence.cpp
blob: 4bcce53b4dbf42271d564f67a1865e2a44ae1e05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <Functions/FunctionFactory.h>
#include <Functions/HasSubsequenceImpl.h>


namespace DB
{
namespace
{

struct HasSubsequenceCaseSensitiveASCII
{
    static constexpr bool is_utf8 = false;

    static int toLowerIfNeed(int c) { return c; }
};

struct NameHasSubsequence
{
    static constexpr auto name = "hasSubsequence";
};

using FunctionHasSubsequence = HasSubsequenceImpl<NameHasSubsequence, HasSubsequenceCaseSensitiveASCII>;
}

REGISTER_FUNCTION(hasSubsequence)
{
    factory.registerFunction<FunctionHasSubsequence>({}, FunctionFactory::CaseInsensitive);
}

}