#include "FunctionStringReplace.h" #include "FunctionFactory.h" #include "ReplaceRegexpImpl.h" namespace DB { struct NameReplaceRegexpOne { static constexpr auto name = "replaceRegexpOne"; }; using FunctionReplaceRegexpOne = FunctionStringReplace, NameReplaceRegexpOne>; void registerFunctionReplaceRegexpOne(FunctionFactory & factory) { factory.registerFunction(); } }