mahinash26 commented on issue #820:
URL: https://github.com/apache/age/issues/820#issuecomment-1536486308

   It looks like the error message you received is due to the fact that you 
specified the table name "cypher" more than once in your FROM clause. To fix 
the issue, you could try aliasing the table names, like so:
   
   
   SELECT * 
   FROM cypher('query1') AS result1, cypher('query2') AS result2;
   
   This should allow you to specify multiple cypher calls in the same FROM 
clause without encountering the "table name specified more than once" error.


-- 
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