Skip to content

Commit 4b5f4fa

Browse files
committed
Update tests
1 parent 4220843 commit 4b5f4fa

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docs/reference/query-languages/esql/_snippets/functions/description/match_phrase.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/examples/match_phrase.md

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/docs/functions/match_phrase.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MatchPhrase.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ public class MatchPhrase extends FullTextFunction implements OptionalArgument, P
9999
@FunctionInfo(
100100
returnType = "boolean",
101101
preview = true,
102-
// TODO link to match-phrase-field-params
103102
description = """
104103
Use `MATCH_PHRASE` to perform a <<query-dsl-match-query-phrase,match_phrase query>> on the specified field.
105104
Using `MATCH_PHRASE` is equivalent to using the `match_phrase` query in the Elasticsearch Query DSL.
@@ -109,7 +108,7 @@ public class MatchPhrase extends FullTextFunction implements OptionalArgument, P
109108
110109
MatchPhrase can use <<esql-function-named-params,function named parameters>> to specify additional options for the
111110
match_phrase query.
112-
All match_phrase query parameters are supported.
111+
All <<query-dsl-match-query-phrase,match_phrase>> query parameters are supported.
113112
114113
`MATCH_PHRASE` returns true if the provided query matches the row.""",
115114
examples = {

0 commit comments

Comments
 (0)