mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 15:47:23 -04:00
A while ago we decided we weren't going to support NaN or infinite values in the language. Removing these functions is part of that effort.
32 lines
722 B
Text
32 lines
722 B
Text
[[esql-operators]]
|
|
==== {esql} operators
|
|
|
|
++++
|
|
<titleabbrev>Operators</titleabbrev>
|
|
++++
|
|
|
|
Boolean operators for comparing against one or multiple expressions.
|
|
|
|
// tag::op_list[]
|
|
* <<esql-binary-operators>>
|
|
* <<esql-unary-operators>>
|
|
* <<esql-logical-operators>>
|
|
* <<esql-predicates>>
|
|
* <<esql-cidr_match>>
|
|
* <<esql-ends_with>>
|
|
* <<esql-in-operator>>
|
|
* <<esql-like-operator>>
|
|
* <<esql-rlike-operator>>
|
|
* <<esql-starts_with>>
|
|
// end::op_list[]
|
|
|
|
include::binary.asciidoc[]
|
|
include::unary.asciidoc[]
|
|
include::logical.asciidoc[]
|
|
include::predicates.asciidoc[]
|
|
include::cidr_match.asciidoc[]
|
|
include::ends_with.asciidoc[]
|
|
include::in.asciidoc[]
|
|
include::like.asciidoc[]
|
|
include::rlike.asciidoc[]
|
|
include::starts_with.asciidoc[]
|