dukeofhazardz opened a new issue, #988:
URL: https://github.com/apache/age/issues/988
I executed a Cypher query using the `MATCH` and `RETURN` clauses, expecting
to retrieve nodes that have the `com` property (**N/B:** There was no such
property). I expected an error message to be thrown, however, the query
returned empty rows even for nodes that don't have the `com` property. I would
like to know if this is the expected behavior or if it should return an error
message indicating the absence of such property.
**Steps to Reproduce**
1. Execute the following Cypher query:
```
demo=# SELECT *
FROM cypher('demo', $$
MATCH (u)
RETURN u.com
$$) as (a agtype);
a
---
(15 rows)
```
**Additional Information:**
- PostgreSQL version: 11.17
- AGE extension version: 1.3.0
- Environment: Command Line
--
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]