search.asciidoc 1.1 KB

1234567891011121314151617181920212223242526272829
  1. [discrete]
  2. [[esql-search-operators]]
  3. === Search operators
  4. The only search operator is match (`:`).
  5. preview::["Do not use on production environments. This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features."]
  6. The match operator performs a <<query-dsl-match-query,match query>> on the specified field.
  7. Returns true if the provided query matches the row.
  8. The match operator is equivalent to the <<esql-match,match function>>.
  9. For using the function syntax, or adding <<match-field-params,match query parameters>>, you can use the
  10. <<esql-match,match function>>.
  11. [.text-center]
  12. image::esql/functions/signature/match_operator.svg[Embedded,opts=inline]
  13. include::types/match_operator.asciidoc[]
  14. [source.merge.styled,esql]
  15. ----
  16. include::{esql-specs}/match-operator.csv-spec[tag=match-with-field]
  17. ----
  18. [%header.monospaced.styled,format=dsv,separator=|]
  19. |===
  20. include::{esql-specs}/match-operator.csv-spec[tag=match-with-field-result]
  21. |===