is_nan.asciidoc 155 B

123456789
  1. [[esql-is_nan]]
  2. === `IS_NAN`
  3. Returns a boolean that indicates whether its input is not a number.
  4. [source,esql]
  5. ----
  6. ROW d = 1.0
  7. | EVAL s = IS_NAN(d)
  8. ----