#include "FunctionsStringSearch.h" #include "FunctionFactory.h" #include "CountSubstringsImpl.h" namespace DB { namespace { struct NameCountSubstrings { static constexpr auto name = "countSubstrings"; }; using FunctionCountSubstrings = FunctionsStringSearch>; } REGISTER_FUNCTION(CountSubstrings) { factory.registerFunction(FunctionFactory::CaseInsensitive); } }