mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +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>();
|
|
}
|
|
}
|
|
|