You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClustersIT.java
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
+17-9Lines changed: 17 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -33,19 +33,27 @@ public class RLike extends RegexMatch<RLikePattern> {
33
33
Use `RLIKE` to filter data based on string patterns using using
34
34
<<regexp-syntax,regular expressions>>. `RLIKE` usually acts on a field placed on
35
35
the left-hand side of the operator, but it can also act on a constant (literal)
36
-
expression. The right-hand side of the operator represents the pattern or a list of patterns.""", detailedDescription = """
37
-
Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
38
-
The escape character is backslash `\\`. Since also backslash is a special character in string literals,
39
-
it will require further escaping.
36
+
expression. The right-hand side of the operator represents the pattern.""", detailedDescription = """
37
+
Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
38
+
The escape character is backslash `\\`. Since also backslash is a special character in string literals,
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLikeList.java
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLikeList.java
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,6 @@ public Query asQuery(LucenePushdownPredicates pushdownPredicates, TranslatorHand
0 commit comments