mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
18 lines
284 B
C++
18 lines
284 B
C++
#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>;
|
|
|
|
}
|