zihaozeng0021 commented on issue #2263:
URL: https://github.com/apache/age/issues/2263#issuecomment-3621516546

   The same problem occurs in the following queries:
   
   ```
   SELECT *
   FROM cypher('test', $$
       CREATE p0=(n0), (n1{k:EXISTS{WITH p0}})
       RETURN 1
   $$) AS (one agtype);
   ```
   ```
   SELECT *
   FROM cypher('test', $$
       CREATE ()-[r4 :T6]->(), ({k2:COUNT{WITH r4.k AS a3 UNWIND [] AS a4 WITH 
DISTINCT NULL AS a5}})
       RETURN 1
   $$) AS (one agtype);
   ```
   ```
   SELECT *
   FROM cypher('test', $$
       CREATE (x), ({a1:EXISTS { RETURN COUNT(0) AS a2, keys(x) AS a4 }})
   $$) AS (out agtype);
   ```
   ```
   SELECT *
   FROM cypher('test', $$
       CREATE x = (), ({ a0:COUNT { MATCH () WHERE CASE WHEN true THEN (x IS 
NULL) END RETURN 0 } })
   $$) AS (out agtype);
   ```


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