threedliteguy opened a new issue, #238:
URL: https://github.com/apache/age/issues/238
**Describe the bug**
Using a WHERE after WITH after MATCH ignores condition
**How are you accessing AGE (Command line, driver, etc.)?**
-pgsql inside docker container
**What data setup do we need to do?**
Using the sample city/country data in age/regress/age_load/data/
pgsql
MATCH (m:City) - [:has_city] -> (b:Country{iso2:'BE'}) with b,m where
m.name='x' return m.name,b.iso2 $$) as ( "m.name" agtype, "b" agtype);
returns 550 rows
**Expected behavior**
Should return 0 rows due to m.name='x' WHERE condition on WITH
**Environment :**
- Version: latest docker image apache/age:latest
**Additional info**
With/Where Ref: https://neo4j.com/docs/cypher-manual/current/clauses/where/
--
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]