Test: tailWithNullReturnsNull (line 168)
Cypher query to execute:
RETURN tail(null) AS result
Expected behavior:
tail(null) should return null
ArcadeDB result:
Neo4j result:
According to the documentation, tail(null) should return null, not an empty list.
Test:
tailWithNullReturnsNull(line 168)Cypher query to execute:
Expected behavior:
ArcadeDB result:
{"result": []}Neo4j result:
{"result": null}According to the documentation,
tail(null)should returnnull, not an empty list.