This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a change to branch PG14
in repository https://gitbox.apache.org/repos/asf/age.git
from f6fe4bd0 Add support for external extensions (#2088) (#2107)
new 3b67b182 Fix issue 1955 - List comprehension in WHERE clause (#2094)
new 0f224006 Fix CI build errors caused by missing dependencies (#2163)
new 999464fa Fix issue with the CI build and labeler (#2183)
new a6e33d51 Reimplement list comprehension (#2169)
The 4 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:
.github/workflows/installcheck.yaml | 9 +-
.github/workflows/labeler.yml | 3 +
age--1.5.0--y.y.y.sql | 13 +-
regress/expected/list_comprehension.out | 131 ++++++++--
regress/sql/list_comprehension.sql | 24 +-
sql/agtype_coercions.sql | 11 +
sql/agtype_typecast.sql | 3 +-
src/backend/nodes/ag_nodes.c | 2 +
src/backend/nodes/cypher_outfuncs.c | 14 +-
src/backend/optimizer/cypher_pathnode.c | 82 ++++++-
src/backend/parser/cypher_analyze.c | 416 +++++++++-----------------------
src/backend/parser/cypher_clause.c | 318 ++++++++++++------------
src/backend/parser/cypher_expr.c | 68 +-----
src/backend/parser/cypher_gram.y | 148 ++++--------
src/backend/parser/cypher_item.c | 241 +-----------------
src/backend/utils/adt/agtype.c | 55 +----
src/include/nodes/ag_nodes.h | 2 +-
src/include/nodes/cypher_nodes.h | 14 +-
src/include/nodes/cypher_outfuncs.h | 1 +
src/include/parser/cypher_analyze.h | 12 +-
src/include/parser/cypher_clause.h | 9 -
src/include/parser/cypher_item.h | 2 -
src/include/parser/cypher_parse_node.h | 1 -
23 files changed, 627 insertions(+), 952 deletions(-)