ClickHouse/src/Functions/like.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
337 B
C++
Raw Normal View History

2021-10-27 07:14:42 +00:00
#pragma once
#include "MatchImpl.h"
#include "FunctionsStringSearch.h"
namespace DB
{
struct NameLike
{
static constexpr auto name = "like";
};
using LikeImpl = MatchImpl<NameLike, MatchTraits::Syntax::Like, MatchTraits::Case::Sensitive, MatchTraits::Result::DontNegate>;
2021-10-27 07:14:42 +00:00
using FunctionLike = FunctionsStringSearch<LikeImpl>;
}