Test: listConcatenationWithNull (line 343)
Cypher query to execute:
RETURN [1, 2] || [3, null] AS result
Expected behavior:
[1, 2] || [3, null] should return [1, 2, 3, null]
ArcadeDB result:
Neo4j result:
{"result": [1, 2, 3, null]}
When concatenating lists with || where the second list contains null, only the first list is returned instead of the full concatenation.
Test:
listConcatenationWithNull(line 343)Cypher query to execute:
Expected behavior:
ArcadeDB result:
{"result": [1, 2]}Neo4j result:
{"result": [1, 2, 3, null]}When concatenating lists with
||where the second list containsnull, only the first list is returned instead of the full concatenation.