This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a change to branch PG15
in repository https://gitbox.apache.org/repos/asf/age.git
from 0bd32851 Converted SQL mail into multiple files. (#1401)
new a82f64b0 Fix issue #1398 - SET followed by DELETE does not delete
(#1412)
new b4a0473f Fix issue 1393 - previous clause variables not seen with
EXISTS (#1426)
new b1efcb15 Add support for chained expressions in CASE (#1431)
new 95965145 Fix issue 1219 - MERGE not seeing previous clause var (#1441)
new 336923d8 Fix Docker file to reflect PostgreSQL version 15 (#1449)
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
docker/Dockerfile.dev | 2 +-
regress/expected/cypher_delete.out | 75 +++++-
regress/expected/cypher_match.out | 379 +++++++++++++++++++++++++++---
regress/expected/cypher_merge.out | 110 +++++++++
regress/expected/expr.out | 185 +++++++++++++++
regress/sql/cypher_delete.sql | 19 ++
regress/sql/cypher_match.sql | 164 +++++++++++--
regress/sql/cypher_merge.sql | 30 +++
regress/sql/expr.sql | 95 ++++++++
src/backend/executor/cypher_delete.c | 4 +
src/backend/nodes/cypher_outfuncs.c | 4 +
src/backend/optimizer/cypher_createplan.c | 10 +-
src/backend/optimizer/cypher_pathnode.c | 2 +-
src/backend/parser/cypher_clause.c | 137 +++++++++--
src/backend/parser/cypher_expr.c | 23 ++
src/backend/parser/cypher_gram.y | 5 +
src/include/nodes/cypher_nodes.h | 3 +
17 files changed, 1158 insertions(+), 89 deletions(-)