mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
22 lines
370 B
C++
22 lines
370 B
C++
|
#include "FunctionsStringSearch.h"
|
||
|
#include "FunctionFactory.h"
|
||
|
#include "MatchImpl.h"
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NameNotLike
|
||
|
{
|
||
|
static constexpr auto name = "notLike";
|
||
|
};
|
||
|
|
||
|
using FunctionNotLike = FunctionsStringSearch<MatchImpl<true, true>, NameNotLike>;
|
||
|
|
||
|
void registerFunctionNotLike(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionNotLike>();
|
||
|
}
|
||
|
|
||
|
}
|