This is an automated email from the ASF dual-hosted git repository.
mtaha pushed a change to branch PG15
in repository https://gitbox.apache.org/repos/asf/age.git
from c2faa133 Reimplement list comprehension (#2169)
new 172f093d Prevent object access hook from accesing not installed
namespace (#2161)
new ca198dae Fix CSV import for edge with one property (#2175)
new 543eb123 Add support for operators in cypher query (#2172)
new 5af73b5b Add missing dependency in jdbc driver (#2206)
new a2e608cf Fix issue 2201: unexpected empty string behavior (#2203)
new c38ac06a fix issue 2205: left doesn't catch overflow (#2207)
The 6 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 ++++++++-
drivers/jdbc/lib/build.gradle.kts | 1 +
regress/expected/cypher_match.out | 6 +-
regress/expected/cypher_vle.out | 6 +-
regress/expected/expr.out | 293 ++++++++++++++++++---
regress/expected/pgvector.out | 508 +++++++++++++++++++++++++++++++++---
regress/expected/scan.out | 8 +-
regress/sql/expr.sql | 116 +++++++-
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 | 197 ++++++++++----
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 +
29 files changed, 1804 insertions(+), 471 deletions(-)