aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-15 22:40:16 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-15 22:40:16 +0000
commit2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (patch)
treebb72a1ec4e38514c726a73b1344971307c2db01e /src/backend/commands/explain.c
parent40a89e08b2d7bb592d940e56f696df4a6459e7a3 (diff)
downloadpostgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.tar.gz
postgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.zip
Remove unused #includes in *.c files.
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r--src/backend/commands/explain.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c
index dd83129be4b..5db5334f118 100644
--- a/src/backend/commands/explain.c
+++ b/src/backend/commands/explain.c
@@ -4,7 +4,7 @@
*
* Copyright (c) 1994-5, Regents of the University of California
*
- * $Id: explain.c,v 1.38 1999/06/17 23:45:32 tgl Exp $
+ * $Id: explain.c,v 1.39 1999/07/15 22:39:01 momjian Exp $
*
*/
#include <stdio.h>
@@ -12,15 +12,11 @@
#include <postgres.h>
-#include <nodes/plannodes.h>
#include <nodes/print.h>
-#include <tcop/tcopprot.h>
#include <lib/stringinfo.h>
#include <commands/explain.h>
#include <parser/parsetree.h>
-#include <parser/parse_node.h>
#include <optimizer/planner.h>
-#include <access/xact.h>
#include <utils/relcache.h>
#include <rewrite/rewriteHandler.h>