[GitHub] [age] CapnSpek commented on issue #1219: MERGE does not set properties involving variables

2023-09-28 Thread via GitHub
CapnSpek commented on issue #1219: URL: https://github.com/apache/age/issues/1219#issuecomment-1739124705 I am not very sure but can `transform_cypher_merge` function have something to do with it? The comments mention this, and the function is also hit during debugging. It is

[GitHub] [age] CapnSpek commented on issue #1219: MERGE does not set properties involving variables

2023-09-18 Thread via GitHub
CapnSpek commented on issue #1219: URL: https://github.com/apache/age/issues/1219#issuecomment-1723262498 The same query also fails if instead of an array, we have any other datatype. If the setup is changed to ... SELECT * FROM cypher('xyz', $$ CREATE

[GitHub] [age] CapnSpek commented on issue #1219: MERGE does not set properties involving variables

2023-09-18 Thread via GitHub
CapnSpek commented on issue #1219: URL: https://github.com/apache/age/issues/1219#issuecomment-1723217422 Some observations: - The same query with `CREATE` instead of `MERGE` works just fine ``` SELECT * FROM cypher('xyz', $$ MATCH (x:Label1{arr:[1,2,3,4]}) CREATE