Docker image `apache/age:release_PG18_1.7.0
Reproduction
LOAD 'age';
SET search_path = ag_catalog, public;
SELECT ag_catalog.create_graph('age_issue_case10');
SELECT *
FROM ag_catalog.cypher('age_issue_case10', $$
MERGE p = (:a)-[:r]->(n)
WITH 1 AS y
WHERE ('a' STARTS WITH 'a')
RETURN y
$$) AS (y agtype);
Expected
The query returns one row containing 1 and PostgreSQL remains available.
Actual
server closed the connection unexpectedly
client backend ... was terminated by signal 11: Segmentation fault
Docker image `apache/age:release_PG18_1.7.0
Reproduction
Expected
The query returns one row containing
1and PostgreSQL remains available.Actual