MuhammadTahaNaveed commented on code in PR #1451:
URL: https://github.com/apache/age/pull/1451#discussion_r1432680095
##########
src/backend/parser/cypher_clause.c:
##########
@@ -7085,6 +7121,50 @@ static FuncExpr *make_clause_func_expr(char
*function_name,
return func_expr;
}
+/*
+ * This function is borrowed from PG version 16.1.
+ *
+ * It is used in transformations involving left join in Optional Match and
+ * Merge in a similar way PG16's transformFromClauseItem() uses it.
+ */
+static void markRelsAsNulledBy(ParseState *pstate, Node *n, int jindex)
+{
+ int varno;
+ ListCell *lc;
Review Comment:
extra spaces between datatype and variable name.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]