mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
22 lines
434 B
C++
22 lines
434 B
C++
|
#include "FunctionStringReplace.h"
|
||
|
#include "FunctionFactory.h"
|
||
|
#include "ReplaceRegexpImpl.h"
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NameReplaceRegexpOne
|
||
|
{
|
||
|
static constexpr auto name = "replaceRegexpOne";
|
||
|
};
|
||
|
|
||
|
using FunctionReplaceRegexpOne = FunctionStringReplace<ReplaceRegexpImpl<true>, NameReplaceRegexpOne>;
|
||
|
|
||
|
void registerFunctionReplaceRegexpOne(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionReplaceRegexpOne>();
|
||
|
}
|
||
|
|
||
|
}
|