summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPeter Eisentraut2023-12-10 06:44:04 +0000
committerPeter Eisentraut2023-12-10 06:46:06 +0000
commit90834ceccd7298d4495c088fab85e6d87b9cb086 (patch)
tree255f4a27a99c157fe1fc29e067de56015e7f2d6a /src/include
parentaa210e0c121eb8f58c86d4fcc833a5a6fbb6f5a9 (diff)
Remove some unnecessary includes of "access/xlog_internal.h"
There were a few places where access/xlog_internal.h was apparently included unnecessarily. In some of those places, a more specific header file (that somehow came in via access/xlog_internal.h) can be used instead. Reviewed-by: Heikki Linnakangas <[email protected]> Discussion: https://www.postgresql.org/message-id/flat/a56a6eec-eb14-471b-9570-3cac23603964%40eisentraut.org
Diffstat (limited to 'src/include')
-rw-r--r--src/include/access/generic_xlog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/generic_xlog.h b/src/include/access/generic_xlog.h
index 66941f99a84..f099ec7321f 100644
--- a/src/include/access/generic_xlog.h
+++ b/src/include/access/generic_xlog.h
@@ -15,7 +15,7 @@
#define GENERIC_XLOG_H
#include "access/xlog.h"
-#include "access/xlog_internal.h"
+#include "access/xlogreader.h"
#include "access/xloginsert.h"
#include "storage/bufpage.h"
#include "utils/rel.h"