summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1996-11-04 12:11:44 +0000
committerMarc G. Fournier1996-11-04 12:11:44 +0000
commit0e2822072c432be4bb53f61e09ef4afb96fce659 (patch)
treea74e2637c65190667b135544c5a7873deb5467a4
parentdc037969adaf7d5a16fa09b12b6fa6bf4e2938b8 (diff)
Make sure all the cleaned up includes are commited
-rw-r--r--src/include/executor/execdesc.h9
-rw-r--r--src/include/nodes/plannodes.h6
2 files changed, 8 insertions, 7 deletions
diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h
index b2581efed03..0244a62e538 100644
--- a/src/include/executor/execdesc.h
+++ b/src/include/executor/execdesc.h
@@ -7,16 +7,17 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execdesc.h,v 1.1 1996/08/28 07:22:08 scrappy Exp $
+ * $Id: execdesc.h,v 1.2 1996/11/04 12:11:40 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef EXECDESC_H
#define EXECDESC_H
-#include "nodes/parsenodes.h"
-#include "nodes/plannodes.h"
-#include "tcop/dest.h"
+#include <tcop/dest.h>
+#include <nodes/plannodes.h>
+#include <nodes/parsenodes.h>
+#include <nodes/nodes.h>
/* ----------------
* query descriptor:
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h
index 856a4ef4c6d..bdc77c4803a 100644
--- a/src/include/nodes/plannodes.h
+++ b/src/include/nodes/plannodes.h
@@ -6,14 +6,15 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: plannodes.h,v 1.3 1996/11/03 12:12:57 scrappy Exp $
+ * $Id: plannodes.h,v 1.4 1996/11/04 12:11:44 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PLANNODES_H
#define PLANNODES_H
-#include "nodes/primnodes.h"
+#include <nodes/execnodes.h>
+#include <nodes/nodes.h>
/* ----------------------------------------------------------------
* Executor State types are used in the plannode structures
@@ -49,7 +50,6 @@
*
* ----------------------------------------------------------------
*/
-#include "nodes/execnodes.h" /* XXX move executor types elsewhere */
/* ----------------------------------------------------------------