mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
23 lines
493 B
C++
23 lines
493 B
C++
#include "FunctionStringReplace.h"
|
|
#include "FunctionFactory.h"
|
|
#include "ReplaceStringImpl.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameReplaceAll
|
|
{
|
|
static constexpr auto name = "replaceAll";
|
|
};
|
|
|
|
using FunctionReplaceAll = FunctionStringReplace<ReplaceStringImpl<false>, NameReplaceAll>;
|
|
|
|
void registerFunctionReplaceAll(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionReplaceAll>();
|
|
factory.registerAlias("replace", NameReplaceAll::name, FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|