CapnSpek commented on issue #1062:
URL: https://github.com/apache/age/issues/1062#issuecomment-1650812731

   Tests that may require code changes.
   File - expr.out
   
   Line 2340
   ```
   SELECT * FROM cypher('expr', $$
       MATCH ()-[e]-() RETURN id(e), start_id(e), startNode(e)
   $$) AS (id agtype, start_id agtype, startNode agtype);
   ```
   
   ```
   -        id        |     start_id     |                                    
startnode                                     
   
-------------------+------------------+----------------------------------------------------------------------------------
   - 1407374883553281 | 1125899906842626 | {"id": 1125899906842626, "label": 
"v1", "properties": {"id": "middle"}}::vertex
   - 1407374883553281 | 1125899906842626 | {"id": 1125899906842626, "label": 
"v1", "properties": {"id": "middle"}}::vertex
   - 1407374883553282 | 1125899906842625 | {"id": 1125899906842625, "label": 
"v1", "properties": {"id": "initial"}}::vertex
   - 1407374883553282 | 1125899906842625 | {"id": 1125899906842625, "label": 
"v1", "properties": {"id": "initial"}}::vertex
   -(4 rows)
   -
   +ERROR:  graphid 4 does not exist
   ```
   
   Line 2373
   ```
   SELECT * FROM cypher('expr', $$
       MATCH ()-[e]-() RETURN id(e), end_id(e), endNode(e)
   $$) AS (id agtype, end_id agtype, endNode agtype);
   ```
   
   ```
   -        id        |      end_id      |                                     
endnode                                     
   
-------------------+------------------+---------------------------------------------------------------------------------
   - 1407374883553281 | 1125899906842627 | {"id": 1125899906842627, "label": 
"v1", "properties": {"id": "end"}}::vertex
   - 1407374883553281 | 1125899906842627 | {"id": 1125899906842627, "label": 
"v1", "properties": {"id": "end"}}::vertex
   - 1407374883553282 | 1125899906842626 | {"id": 1125899906842626, "label": 
"v1", "properties": {"id": "middle"}}::vertex
   - 1407374883553282 | 1125899906842626 | {"id": 1125899906842626, "label": 
"v1", "properties": {"id": "middle"}}::vertex
   -(4 rows)
   -
   +ERROR:  graphid 5 does not exist
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to