OpenSearch/docs/reference/sql/functions
Marios Trivyzas b078e2970c
SQL: Implement null safe equality operator `<=>` (#35873)
This operator handles nulls in different way than the normal `=`.
If one of the operants is `null` and the other not it returns `false`.
If both operants are `null` it returns `true`. Therefore in contrary to
`=`, which returns `null` if at least one of the operants is `null`, this one
never returns `null` as a result.

Closes: #35871
2018-11-26 14:02:02 +01:00
..
aggs.asciidoc DOC: Enhance SQL Functions documentation 2018-09-06 18:09:53 +03:00
conditional.asciidoc SQL: Implement NULLIF(expr1, expr2) function (#35826) 2018-11-23 22:19:27 +01:00
date-time.asciidoc DOC: Enhance SQL Functions documentation 2018-09-06 18:09:53 +03:00
index.asciidoc SQL: [docs] Add documentation for COALESCE (#35740) 2018-11-21 01:43:05 +01:00
math.asciidoc SQL: Functions enhancements (OCTET_LENGTH function, order functions alphabetically, RANDOM function docs) (#34101) 2018-10-09 00:20:18 +03:00
operators.asciidoc SQL: Implement null safe equality operator `<=>` (#35873) 2018-11-26 14:02:02 +01:00
search.asciidoc DOC: Enhance SQL Functions documentation 2018-09-06 18:09:53 +03:00
string.asciidoc SQL: Functions enhancements (OCTET_LENGTH function, order functions alphabetically, RANDOM function docs) (#34101) 2018-10-09 00:20:18 +03:00
type-conversion.asciidoc SQL: Implement `CONVERT`, an alternative to `CAST` (#34660) 2018-10-23 11:21:15 +02:00