This is an automated email from the ASF dual-hosted git repository. mtaha pushed a commit to branch PG14 in repository https://gitbox.apache.org/repos/asf/age.git
commit 9ed72c2f7439fab66c6cc0a5ecc95387bf932c4c Author: John Gemignani <[email protected]> AuthorDate: Fri Oct 17 11:08:38 2025 -0700 Add PostgreSQL String definition for compatability Added the definition for String for compatability with PRs from later versions of PostgreSQL (pg15 and onward). modified: src/include/nodes/cypher_nodes.h --- src/include/nodes/cypher_nodes.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/include/nodes/cypher_nodes.h b/src/include/nodes/cypher_nodes.h index e8d4f985..484499ca 100644 --- a/src/include/nodes/cypher_nodes.h +++ b/src/include/nodes/cypher_nodes.h @@ -22,6 +22,17 @@ #include "nodes/ag_nodes.h" +/* + * Added the following String definition from PostgreSQL's value.h to + * allow for compatability with PRs from later versions (PG15 and onward). + */ +typedef struct String +{ + + NodeTag type; + char *sval; +} String; + /* cypher sub patterns/queries */ typedef enum csp_kind {
