-
Notifications
You must be signed in to change notification settings - Fork 25.5k
ES|QL: Add default values for match function options #125282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ES|QL: Add default values for match function options #125282
Conversation
Pinging @elastic/es-docs (Team:Docs) |
Pinging @elastic/es-analytical-engine (Team:Analytics) |
type = "keyword", | ||
valueHint = { "none", "all" }, | ||
description = "Number of beginning characters left unchanged for fuzzy matching." | ||
description = "Number of beginning characters left unchanged for fuzzy matching. Defaults to none." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not the right doc string for zero_terms_query
- it seems to be a copy of the one we have for prefix_length
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the catch! Fixed in a6bb85d
…tions' into docs/esql-match-default-options
@elasticmachine update branch |
@carlosdelest The annoying thing about the docs migration is that we can't backport docs changes from main/9.0 to 8.x anymore and will have to make those changes in a separate PR, because it's asciidoc all the way down on 8.x |
But maybe can backport manually, delete the |
Yes. The manual backport to 8.x should start with only the changes to Just to confirm, automatic backporting any PR between main and 8.x will fail (or should fail) if it includes any documentation changes. |
@craigtaverner @leemthompo Yes, the plan was to do a manual regeneration of the docs on the 8.x branches 👍 |
💔 Backport failed
You can use sqren/backport to manually backport by running |
(cherry picked from commit 160ac69) # Conflicts: # docs/reference/query-languages/esql/_snippets/functions/functionNamedParams/match.md
💔 Some backports could not be created
Manual backportTo create the backport manually run:
Questions ?Please refer to the Backport tool documentation |
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
(cherry picked from commit 160ac69) # Conflicts: # docs/reference/query-languages/esql/_snippets/functions/functionNamedParams/match.md
This PR adds documentation for MATCH default values