mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-30 18:33:26 -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
9 lines
557 B
Text
Generated
9 lines
557 B
Text
Generated
// This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
|
|
|
|
*Description*
|
|
|
|
Returns a new string representing the input string in reverse order.
|
|
|
|
NOTE: If Elasticsearch is running with a JDK version less than 20 then this will not properly reverse Grapheme Clusters.
|
|
Elastic Cloud and the JDK bundled with Elasticsearch all use newer JDKs. But if you've explicitly shifted to an older jdk
|
|
then you'll see things like "👍🏽😊" be reversed to "🏽👍😊" instead of the correct "😊👍🏽".
|