This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a change to branch PG17
in repository https://gitbox.apache.org/repos/asf/age.git
from 99f2c23c Reimplement list comprehension (#2169) (#2188)
new d9c16ab6 Add support for operators in cypher query (#2172)
new 4ce18f31 Prevent object access hook from accesing not installed
namespace (#2161)
new d38b2bdb Fix CSV import for edge with one property (#2175)
The 3 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:
age--1.5.0--y.y.y.sql | 118 ++++++++-
regress/expected/cypher_match.out | 6 +-
regress/expected/cypher_vle.out | 6 +-
regress/expected/pgvector.out | 508 +++++++++++++++++++++++++++++++++---
regress/expected/scan.out | 8 +-
regress/sql/pgvector.sql | 252 ++++++++++++++++--
regress/sql/scan.sql | 2 +-
sql/agtype_coercions.sql | 2 +-
sql/agtype_exists.sql | 26 +-
sql/agtype_operators.sql | 16 +-
sql/agtype_string.sql | 6 +
src/backend/catalog/ag_catalog.c | 8 +
src/backend/catalog/ag_graph.c | 13 +
src/backend/catalog/ag_label.c | 15 ++
src/backend/nodes/cypher_outfuncs.c | 2 +-
src/backend/parser/ag_scanner.l | 217 ++++++++++-----
src/backend/parser/cypher_analyze.c | 9 +-
src/backend/parser/cypher_expr.c | 251 +++++++++---------
src/backend/parser/cypher_gram.y | 168 +++++++++---
src/backend/parser/cypher_parser.c | 19 +-
src/backend/utils/adt/agtype.c | 12 +-
src/backend/utils/load/age_load.c | 2 +-
src/include/catalog/ag_graph.h | 1 +
src/include/nodes/cypher_nodes.h | 2 +-
src/include/parser/ag_scanner.h | 10 +-
src/include/parser/cypher_kwlist.h | 1 +
26 files changed, 1306 insertions(+), 374 deletions(-)