mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
27 lines
578 B
C++
27 lines
578 B
C++
#include "FunctionStringReplace.h"
|
|
#include "FunctionFactory.h"
|
|
#include "ReplaceRegexpImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct NameReplaceRegexpAll
|
|
{
|
|
static constexpr auto name = "replaceRegexpAll";
|
|
};
|
|
|
|
using FunctionReplaceRegexpAll = FunctionStringReplace<ReplaceRegexpImpl<NameReplaceRegexpAll, ReplaceRegexpTraits::Replace::All>, NameReplaceRegexpAll>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(ReplaceRegexpAll)
|
|
{
|
|
factory.registerFunction<FunctionReplaceRegexpAll>();
|
|
factory.registerAlias("REGEXP_REPLACE", NameReplaceRegexpAll::name, FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|