From 2f5b2d0a1855b41aa8a07fc2162c76bd89f79d1b Mon Sep 17 00:00:00 2001 From: MironAtHome Date: Mon, 12 Aug 2024 16:52:02 -0700 Subject: [PATCH] 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 432954561..1b2ce2ad1 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);