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 (x:Label1{arr:[1,2,3,4]})
   RETURN x 
   $$) as (a agtype);
   ...
   
   And the query to:
   ```
   SELECT * FROM cypher('xyz', 
   $$
   MATCH (x:Label1{arr:[1,2,3,4]})
   MERGE (y:Label2{key1:2, key2:x.arr, key3:3})
   RETURN y
   $$) as (a agtype);
   ```
   
   The return value is still
   `{"id": 1125899906842643, "label": "Label2", "properties": {"key1": 2, 
"key3": 3}}::vertex`
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to