From 21c09e99dc252269360bd146afee9481fa80abbc Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 28 Aug 2012 19:02:00 -0400 Subject: Split heapam_xlog.h from heapam.h The heapam XLog functions are used by other modules, not all of which are interested in the rest of the heapam API. With this, we let them get just the XLog stuff in which they are interested and not pollute them with unrelated includes. Also, since heapam.h no longer requires xlog.h, many files that do include heapam.h no longer get xlog.h automatically, including a few headers. This is useful because heapam.h is getting pulled in by execnodes.h, which is in turn included by a lot of files. --- src/include/commands/explain.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/commands/explain.h') diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index cd1d56d6e8d..c4215da1e32 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -14,6 +14,7 @@ #define EXPLAIN_H #include "executor/executor.h" +#include "lib/stringinfo.h" typedef enum ExplainFormat { -- cgit v1.2.3