#include "FunctionStringReplace.h" #include "FunctionFactory.h" #include "ReplaceRegexpImpl.h" namespace DB { struct NameReplaceRegexpAll { static constexpr auto name = "replaceRegexpAll"; }; using FunctionReplaceRegexpAll = FunctionStringReplace, NameReplaceRegexpAll>; void registerFunctionReplaceRegexpAll(FunctionFactory & factory) { factory.registerFunction(); } }