ClickHouse/src/Functions/notLike.cpp

25 lines
384 B
C++

#include "FunctionsStringSearch.h"
#include "FunctionFactory.h"
#include "MatchImpl.h"
namespace DB
{
namespace
{
struct NameNotLike
{
static constexpr auto name = "notLike";
};
using FunctionNotLike = FunctionsStringSearch<MatchImpl<NameNotLike, true, true>>;
}
void registerFunctionNotLike(FunctionFactory & factory)
{
factory.registerFunction<FunctionNotLike>();
}
}