Open nik9000 opened 3 days ago
In ESQL CONCAT("a", NULL, "b") is null. That's true in MySQL but not in Postgres!
CONCAT("a", NULL, "b")
null
Do we want to be more like Postgres here? That comes with some fun side effects, maybe.
Pinging @elastic/es-analytical-engine (Team:Analytics)
Description
In ESQL
CONCAT("a", NULL, "b")
isnull
. That's true in MySQL but not in Postgres!Do we want to be more like Postgres here? That comes with some fun side effects, maybe.