ClickHouse/src/Functions/like.h
2021-10-27 19:53:53 +08:00

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>;
}