#include "FunctionsStringSearch.h" #include "FunctionFactory.h" #include "MatchImpl.h" namespace DB { namespace { struct NameNotLike { static constexpr auto name = "notLike"; }; using NotLikeImpl = MatchImpl; using FunctionNotLike = FunctionsStringSearch; } REGISTER_FUNCTION(NotLike) { factory.registerFunction(); } }