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