mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
13 lines
225 B
C++
13 lines
225 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
#include <string_view>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Transforms the [I]LIKE expression into regexp re2. For example, abc%def -> ^abc.*def$
|
|
String likePatternToRegexp(std::string_view pattern);
|
|
|
|
}
|