diff options
author | Peter Eisentraut | 2016-03-14 23:56:33 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-03-14 23:56:33 +0000 |
commit | be6de4c1215a8ad5607b1fcc7e9e6da1de780877 (patch) | |
tree | 585bd963bdf4784849545e6e3df0da8a903d235f | |
parent | 270b7daf5cb1e955f8771ec819eb810057d1779b (diff) |
Add missing include for self-containment
-rw-r--r-- | src/include/common/controldata_utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/common/controldata_utils.h b/src/include/common/controldata_utils.h index 1a097653da..a355d2252d 100644 --- a/src/include/common/controldata_utils.h +++ b/src/include/common/controldata_utils.h @@ -10,6 +10,8 @@ #ifndef COMMON_CONTROLDATA_UTILS_H #define COMMON_CONTROLDATA_UTILS_H +#include "catalog/pg_control.h" + extern ControlFileData *get_controlfile(char *DataDir, const char *progname); #endif /* COMMON_CONTROLDATA_UTILS_H */ |