aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/endsWith.cpp
blob: 308eb67e4b82ca77ec3c9800497d7d66e27f397d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <DataTypes/DataTypeString.h>
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionStartsEndsWith.h>


namespace DB
{

using FunctionEndsWith = FunctionStartsEndsWith<NameEndsWith>;

REGISTER_FUNCTION(EndsWith)
{
    factory.registerFunction<FunctionEndsWith>();
}

}