This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch PG13
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/PG13 by this push:
new 2f5b2d0a Fix issue #2027 (#2039)
2f5b2d0a is described below
commit 2f5b2d0a1855b41aa8a07fc2162c76bd89f79d1b
Author: MironAtHome <[email protected]>
AuthorDate: Mon Aug 12 16:52:02 2024 -0700
Fix issue #2027 (#2039)
get_graph_oid function declaration return type uint32 definition Oid
Make both return Oid
---
src/include/catalog/ag_graph.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/include/catalog/ag_graph.h b/src/include/catalog/ag_graph.h
index 43295456..1b2ce2ad 100644
--- a/src/include/catalog/ag_graph.h
+++ b/src/include/catalog/ag_graph.h
@@ -37,7 +37,7 @@ void insert_graph(const Name graph_name, const Oid nsp_id);
void delete_graph(const Name graph_name);
void update_graph_name(const Name graph_name, const Name new_name);
-uint32 get_graph_oid(const char *graph_name);
+Oid get_graph_oid(const char *graph_name);
char *get_graph_namespace_name(const char *graph_name);
List *get_graphnames(void);