diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-24 18:08:55 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-24 18:08:55 -0500 |
commit | a4b03de589c1df0845e9732da203f505f2eedb6d (patch) | |
tree | 72930b76781d40c5fa753a65043d2b89d5064b4a | |
parent | c7edf4ac246b67073563354c2808c78868cbac36 (diff) | |
download | postgresql-a4b03de589c1df0845e9732da203f505f2eedb6d.tar.gz postgresql-a4b03de589c1df0845e9732da203f505f2eedb6d.zip |
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.
-rw-r--r-- | src/include/storage/standby.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/storage/standby.h b/src/include/storage/standby.h index 2b1f340b82b..94d33851d09 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" |