jrgemignani commented on issue #1045:
URL: https://github.com/apache/age/issues/1045#issuecomment-1773542633

   @MatheusFarias03 @MuhammadTahaNaveed This looks to still be an issue -
   
   ```
   psql-15.4-5432-pgsql=# select * from create_graph('graph');
   NOTICE:  graph "graph" has been created
    create_graph
   --------------
   
   (1 row)
   
   psql-15.4-5432-pgsql=# SELECT * FROM cypher('graph',$$
   psql-15.4-5432-pgsql$#     CREATE (n)-[:KNOWS {n:'hello'}]->({n:'hello'})
   psql-15.4-5432-pgsql$# $$) as (a agtype);
    a
   ---
   (0 rows)
   
   psql-15.4-5432-pgsql=# SELECT * FROM cypher('graph', $$
   psql-15.4-5432-pgsql$#     MATCH p = (m)-[]->(b)
   psql-15.4-5432-pgsql$#     WHERE length(p) >1
   psql-15.4-5432-pgsql$#     RETURN p
   psql-15.4-5432-pgsql$# $$) AS (pattern agtype);
   ERROR:  could not find rte for p
   LINE 3:     WHERE length(p) >1
                            ^
   psql-15.4-5432-pgsql=#
   ```
   
   Is there a plan to fix it?


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