#include "FunctionsStringSearch.h" #include "FunctionFactory.h" #include "MatchImpl.h" namespace DB { namespace { struct NameNotILike { static constexpr auto name = "notILike"; }; using NotILikeImpl = MatchImpl; using FunctionNotILike = FunctionsStringSearch; } REGISTER_FUNCTION(NotILike) { factory.registerFunction(); } }