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