dehowef commented on code in PR #1751:
URL: https://github.com/apache/age/pull/1751#discussion_r1578714531
##########
src/backend/parser/cypher_clause.c:
##########
@@ -448,6 +448,22 @@ static cypher_clause *make_cypher_clause(List *stmt)
next->self = lfirst(lc);
next->prev = clause;
+ /* check for subqueries in match */
+ if (is_ag_node(next->self, cypher_match))
+ {
+ cypher_match *match = (cypher_match *)next->self;
+
+ if (match->where != NULL && expr_contains_node(expr_has_subquery,
match->where))
Review Comment:
@rafsun42 Resolved
--
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]