ClickHouse/src/Functions/like.h

18 lines
284 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, /*SQL LIKE */ true, /*revert*/false>;
using FunctionLike = FunctionsStringSearch<LikeImpl>;
}