Test: stringConcatenationWithPipeAndNull (line 310)
Cypher query to execute:
RETURN 'Hello' || null AS result
Expected behavior:
'Hello' || null should return null
ArcadeDB result:
Neo4j result:
When concatenating a string with null using the || operator, the result should be null, not the original string.
Test:
stringConcatenationWithPipeAndNull(line 310)Cypher query to execute:
Expected behavior:
ArcadeDB result:
{"result": "Hello"}Neo4j result:
{"result": null}When concatenating a string with
nullusing the||operator, the result should benull, not the original string.