#include "FunctionStringReplace.h" #include "FunctionFactory.h" #include "ReplaceRegexpImpl.h" namespace DB { namespace { struct NameReplaceRegexpAll { static constexpr auto name = "replaceRegexpAll"; }; using FunctionReplaceRegexpAll = FunctionStringReplace, NameReplaceRegexpAll>; } REGISTER_FUNCTION(ReplaceRegexpAll) { factory.registerFunction(); factory.registerAlias("REGEXP_REPLACE", NameReplaceRegexpAll::name, FunctionFactory::CaseInsensitive); } }