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/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MatchPhrase.java
+3-19Lines changed: 3 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -118,11 +118,7 @@ public class MatchPhrase extends FullTextFunction implements OptionalArgument, P
118
118
publicMatchPhrase(
119
119
Sourcesource,
120
120
@Param(name = "field", type = { "keyword", "text" }, description = "Field that the query will target.") Expressionfield,
121
-
@Param(
122
-
name = "query",
123
-
type = { "keyword", "text" },
124
-
description = "Value to find in the provided field."
125
-
) ExpressionmatchPhraseQuery,
121
+
@Param(name = "query", type = { "keyword" }, description = "Value to find in the provided field.") ExpressionmatchPhraseQuery,
126
122
@MapParam(
127
123
name = "options",
128
124
params = {
@@ -200,31 +196,19 @@ public final void writeTo(StreamOutput out) throws IOException {
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MatchPhraseTests.java
-10Lines changed: 0 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -69,16 +69,6 @@ public static void addStringTestCases(List<TestCaseSupplier> suppliers) {
0 commit comments