#include "FunctionStringReplace.h" #include "FunctionFactory.h" #include "ReplaceStringImpl.h" namespace DB { namespace { struct NameReplaceOne { static constexpr auto name = "replaceOne"; }; using FunctionReplaceOne = FunctionStringReplace, NameReplaceOne>; } void registerFunctionReplaceOne(FunctionFactory & factory) { factory.registerFunction(); } }