This is an automated email from the ASF dual-hosted git repository.
rafsun42 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/master by this push:
new bb704ac5 Add missing dependency in cypher_expr.c (#1256)
bb704ac5 is described below
commit bb704ac54ee562c08d81f2e991b0e7cfa33595a2
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"