elasticsearch/docs/reference/esql/functions/operators.asciidoc
Mark Tozzi 282f0f0a00
[ESQL] Remove is_nan, is_finite, and is_infinite (#104091)
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.
2024-01-09 14:51:32 -05:00

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[]