From: Alvaro Herrera Date: Thu, 5 Apr 2018 15:15:28 +0000 (-0300) Subject: Add missing include X-Git-Tag: REL_11_BETA1~352 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fbc27330b8f8693d8fa9b1f8cb450567c3d81640;p=thirdparty%2Fpostgresql.git Add missing include Newly added prototype broke cpluspluscheck. Minor buglet in commit 8694cc96b52a. --- diff --git a/src/include/storage/reinit.h b/src/include/storage/reinit.h index 5c34f88b95e..9a1c5bdc4e9 100644 --- a/src/include/storage/reinit.h +++ b/src/include/storage/reinit.h @@ -15,6 +15,9 @@ #ifndef REINIT_H #define REINIT_H +#include "common/relpath.h" + + extern void ResetUnloggedRelations(int op); extern bool parse_filename_for_nontemp_relation( const char *name, int *oidchars, ForkNumber *fork);