From a4b03de589c1df0845e9732da203f505f2eedb6d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 24 Jan 2021 18:08:55 -0500 Subject: [PATCH] Make storage/standby.h compile standalone again. This file has failed headerscheck/cpluspluscheck verification since commit 0650ff230, as a result of referencing typedef TimestampTz without including the appropriate header. --- src/include/storage/standby.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/storage/standby.h b/src/include/storage/standby.h index 2b1f340b82..94d33851d0 100644 --- a/src/include/storage/standby.h +++ b/src/include/storage/standby.h @@ -14,6 +14,7 @@ #ifndef STANDBY_H #define STANDBY_H +#include "datatype/timestamp.h" #include "storage/lock.h" #include "storage/procsignal.h" #include "storage/relfilenode.h"