Skip to content

Commit 5fe98cd

Browse files
committed
Document support for semantic_text field mapping
1 parent 873dc52 commit 5fe98cd

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

docs/reference/esql/esql-limitations.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ include::processing-commands/limit.asciidoc[tag=limitation]
3434
* `int` (`short` and `byte` are represented as `int`)
3535
* `long`
3636
* `null`
37-
* `text`
37+
* `text` family including `text` and `semantic_text`
3838
* experimental:[] `unsigned_long`
3939
* `version`
4040
* Spatial types

docs/reference/esql/functions/description/match.asciidoc

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/esql/functions/kibana/definition/match.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/esql/functions/kibana/docs/match.md

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/Match.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ public class Match extends FullTextFunction implements Validatable {
102102
Use `MATCH` to perform a <<query-dsl-match-query,match query>> on the specified field.
103103
Using `MATCH` is equivalent to using the `match` query in the Elasticsearch Query DSL.
104104
105-
Match can be used on text fields, as well as other field types like boolean, dates, and numeric types.
105+
Match can be used on fields from the text family like `text` and `semantic_text`,
106+
as well as other field types like keyword, boolean, dates, and numeric types.
106107
107108
For a simplified syntax, you can use the <<esql-search-operators,match operator>> `:` operator instead of `MATCH`.
108109

0 commit comments

Comments
 (0)