ClickHouse/src/Functions/endsWith.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
291 B
C++
Raw Normal View History

2018-09-09 23:36:06 +00:00
#include <DataTypes/DataTypeString.h>
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionStartsEndsWith.h>
namespace DB
{
using FunctionEndsWith = FunctionStartsEndsWith<NameEndsWith>;
REGISTER_FUNCTION(EndsWith)
2018-09-09 23:36:06 +00:00
{
factory.registerFunction<FunctionEndsWith>();
}
2018-09-09 23:36:06 +00:00
}