This is an automated email from the ASF dual-hosted git repository.

jgemignani pushed a commit to branch PG15
in repository https://gitbox.apache.org/repos/asf/age.git

commit 4be97abbc3f09881de6982804cdf4e12e401d635
Author: Dehowe Feng <[email protected]>
AuthorDate: Thu Sep 28 15:21:08 2023 -0700

    Add missing dependency in cypher_expr.c (#1256)
    
    The function contain_vars_of_level() was missing a header.
    Added that header to prevent a warning during compilation.
---
 src/backend/parser/cypher_expr.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/backend/parser/cypher_expr.c b/src/backend/parser/cypher_expr.c
index 5a7c3d02..15bfc812 100644
--- a/src/backend/parser/cypher_expr.c
+++ b/src/backend/parser/cypher_expr.c
@@ -31,6 +31,7 @@
 #include "nodes/nodes.h"
 #include "nodes/parsenodes.h"
 #include "nodes/value.h"
+#include "optimizer/optimizer.h"
 #include "optimizer/tlist.h"
 #include "parser/parse_coerce.h"
 #include "parser/parse_collate.h"

Reply via email to