mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
17 lines
319 B
C++
17 lines
319 B
C++
|
#include <DataTypes/DataTypeString.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionStartsEndsWith.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionEndsWith = FunctionStartsEndsWith<NameEndsWith>;
|
||
|
|
||
|
void registerFunctionEndsWith(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionEndsWith>();
|
||
|
}
|
||
|
}
|
||
|
|