YGY-001 opened a new issue, #2537:
URL: https://github.com/apache/age/issues/2537

    Docker image `apache/age:release_PG18_1.7.0`
   
   **Reproduction**
   
   ```sql
   LOAD 'age';
   SET search_path = ag_catalog, public;
   SELECT ag_catalog.create_graph('age_issue_case11');
   
   SELECT *
   FROM ag_catalog.cypher('age_issue_case11', $$
   CREATE (a:base {id: 1})-[r1:r {k0: false}]->
          (n:base {id: 2})-[r0:s {k5: 'x'}]->(b:base {id: 3})
   $$) AS (created agtype);
   
   SELECT *
   FROM ag_catalog.cypher('age_issue_case11', $$
   MATCH (a:base)-[r1:r]->(n:base)-[r0:s]->(b:base)
   SET r0.k5 = 'J', r1.k0 = true
   WITH range(0, 0) + [0] AS keep, r1 AS old
   WHERE 0 IN keep
   DELETE old
   CREATE (:x)
   MERGE p0 = ({id: 129})-[r2:r]->(n2 {id: 130})-[:s]->(:c {id: 131})
   RETURN 1
   $$) AS (value agtype);
   ```
   
   **Expected**
   
   The query returns one row containing `1` and PostgreSQL remains available.
   
   **Actual**
   
   ```text
   server closed the connection unexpectedly
   client backend ... was terminated by signal 11: Segmentation fault


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