-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Term query for ES|QL #117359
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
Term query for ES|QL #117359
Conversation
Pinging @elastic/es-analytical-engine (Team:Analytics) |
Hi @tteofili, I've created a changelog YAML for you. |
Is this an alternative to 'keyword' search feature for ESQL? |
this makes it possible to search for terms in the ES index, so somewhat similar to the |
Adding |
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.
LGTM
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Verifier.java
Show resolved
Hide resolved
The last CI run completed all but one test target, the test-release. It failed because of an unrelated issue, which has since been muted. The last merge with main should pick that up. |
...sql/src/main/java/org/elasticsearch/xpack/esql/expression/function/EsqlFunctionRegistry.java
Outdated
Show resolved
Hide resolved
💔 Backport failed
You can use sqren/backport to manually backport by running |
This commit adds a `term` function for ES|QL to run `TermQueries`. For example: FROM test | WHERE term(content, "dog") (cherry picked from commit 9160586)
This PR provides a
term
function for ES|QL to runTermQueries
.For example: