Skip to content

Commit

Permalink
Fix issue #2027 (#2039)
Browse files Browse the repository at this point in the history
get_graph_oid function declaration return type uint32 definition Oid
Make both return Oid
  • Loading branch information
MironAtHome authored Aug 12, 2024
1 parent 5fc3644 commit 2f5b2d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/catalog/ag_graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2f5b2d0

Please sign in to comment.