diff options
author | Andres Freund <andres@anarazel.de> | 2022-03-22 16:46:24 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-03-22 16:46:24 -0700 |
commit | 3707e437c73920492cab0dd17432be6e89bafd76 (patch) | |
tree | 47f22d11a4e4340d30cba27980e98fc4a81bf02e /src | |
parent | 865fe4d5df560a6f5353da652018ff876978ad2d (diff) | |
download | postgresql-3707e437c73920492cab0dd17432be6e89bafd76.tar.gz postgresql-3707e437c73920492cab0dd17432be6e89bafd76.zip |
Add missing xlogdefs.h include to pg_subscription.h.
Missed in 208c5d65bbd.
The missing include causes headerscheck to fail. Per buildfarm member crake.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_subscription.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/catalog/pg_subscription.h b/src/include/catalog/pg_subscription.h index 69969a0617e..599c2e4422e 100644 --- a/src/include/catalog/pg_subscription.h +++ b/src/include/catalog/pg_subscription.h @@ -17,6 +17,7 @@ #ifndef PG_SUBSCRIPTION_H #define PG_SUBSCRIPTION_H +#include "access/xlogdefs.h" #include "catalog/genbki.h" #include "catalog/pg_subscription_d.h" |