#include "FunctionsStringSearch.h" #include "FunctionFactory.h" #include "MatchImpl.h" namespace DB { struct NameMatch { static constexpr auto name = "match"; }; using FunctionMatch = FunctionsStringSearch, NameMatch>; void registerFunctionMatch(FunctionFactory & factory) { factory.registerFunction(); } }