mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-07-02 11:23:20 -04:00
* Term query for ES|QL (#117359)
This commit adds a `term` function for ES|QL to run `TermQueries`.
For example:
FROM test | WHERE term(content, "dog")
(cherry picked from commit 91605860ee
)
* Update docs/changelog/118135.yaml
11 lines
388 B
Text
Generated
11 lines
388 B
Text
Generated
// This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
|
|
|
|
*Description*
|
|
|
|
Groups text messages into categories of similarly formatted text values.
|
|
|
|
`CATEGORIZE` has the following limitations:
|
|
|
|
* can't be used within other expressions
|
|
* can't be used with multiple groupings
|
|
* can't be used or referenced within aggregate functions
|