From fbc27330b8f8693d8fa9b1f8cb450567c3d81640 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Thu, 5 Apr 2018 12:15:28 -0300 Subject: [PATCH] Add missing include Newly added prototype broke cpluspluscheck. Minor buglet in commit 8694cc96b52a. --- src/include/storage/reinit.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/include/storage/reinit.h b/src/include/storage/reinit.h index 5c34f88b95..9a1c5bdc4e 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);