Skip to content

Commit 945a259

Browse files
authored
Add missing include for PR: Add index scan (#2351) (#2379)
The CI build did not fail the PR (we need to verify why and correct it) due to the missing include - src/backend/utils/adt/age_global_graph.c:273:25: error: implicit declaration of function ‘namestrcpy’; did you mean ‘strcpy’? [-Wimplicit-function-declaration] 273 | namestrcpy(lval, NameStr(*label_name_ptr)); | ^~~~~~~~~~ | strcpy The build still works as the linker was able to resolve it. This PR will add it in to correct the error going forward.
1 parent b3a00ee commit 945a259

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/backend/utils/adt/age_global_graph.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include "utils/lsyscache.h"
2828
#include "utils/memutils.h"
2929
#include "utils/snapmgr.h"
30+
#include "utils/builtins.h"
3031

3132
#include "utils/age_global_graph.h"
3233
#include "catalog/ag_graph.h"

0 commit comments

Comments
 (0)