|
@@ -90,9 +90,8 @@ public class MatchPhrase extends FullTextFunction implements OptionalArgument, P
|
|
|
|
|
|
@FunctionInfo(
|
|
@FunctionInfo(
|
|
returnType = "boolean",
|
|
returnType = "boolean",
|
|
- preview = true,
|
|
|
|
description = """
|
|
description = """
|
|
- Use `MATCH_PHRASE` to perform a [`match_phrase`](/reference/query-languages/query-dsl/query-dsl-match-query-phrase.md) on the
|
|
|
|
|
|
+ Use `MATCH_PHRASE` to perform a <<query-dsl-match-query-phrase,`match_phrase` query>> on the
|
|
specified field.
|
|
specified field.
|
|
Using `MATCH_PHRASE` is equivalent to using the `match_phrase` query in the Elasticsearch Query DSL.
|
|
Using `MATCH_PHRASE` is equivalent to using the `match_phrase` query in the Elasticsearch Query DSL.
|
|
|
|
|
|
@@ -101,7 +100,7 @@ public class MatchPhrase extends FullTextFunction implements OptionalArgument, P
|
|
|
|
|
|
MatchPhrase can use <<esql-function-named-params,function named parameters>> to specify additional options for the
|
|
MatchPhrase can use <<esql-function-named-params,function named parameters>> to specify additional options for the
|
|
match_phrase query.
|
|
match_phrase query.
|
|
- All [`match_phrase`](/reference/query-languages/query-dsl/query-dsl-match-query-phrase.md) query parameters are supported.
|
|
|
|
|
|
+ All <<query-dsl-match-query-phrase,`match_phrase` query>> query parameters are supported.
|
|
|
|
|
|
`MATCH_PHRASE` returns true if the provided query matches the row.""",
|
|
`MATCH_PHRASE` returns true if the provided query matches the row.""",
|
|
examples = { @Example(file = "match-phrase-function", tag = "match-phrase-with-field") }
|
|
examples = { @Example(file = "match-phrase-function", tag = "match-phrase-with-field") }
|