rafsun42 opened a new issue, #1007: URL: https://github.com/apache/age/issues/1007
Find the function `make_directed_edge_join_conditions` in `cypher_clause.c` file. Notice the last two IF-block. ```c ... if (prev_node_filter != NULL && !IS_DEFAULT_LABEL_VERTEX(prev_node_filter)) { ... } if (next_node_filter != NULL && !IS_DEFAULT_LABEL_VERTEX(next_node_filter)) { ... } ... ``` Research the following question: 1. What cypher queries will enter the last two IF-block? 2. Are there any regression tests exist that test such queries? If not, write your own. -- 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.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org