diff options
Diffstat (limited to 'src/include/nodes')
-rw-r--r-- | src/include/nodes/execnodes.h | 11 | ||||
-rw-r--r-- | src/include/nodes/nodes.h | 3 | ||||
-rw-r--r-- | src/include/nodes/parsenodes.h | 6 | ||||
-rw-r--r-- | src/include/nodes/plannodes.h | 5 | ||||
-rw-r--r-- | src/include/nodes/primnodes.h | 4 |
5 files changed, 12 insertions, 17 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 63cbe32b466..7cd8593172e 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -6,20 +6,21 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execnodes.h,v 1.4 1996/10/23 07:41:56 scrappy Exp $ + * $Id: execnodes.h,v 1.5 1996/11/03 12:12:50 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef EXECNODES_H #define EXECNODES_H -#include "nodes/params.h" -#include "access/sdir.h" -#include "access/funcindex.h" #include "executor/hashjoin.h" #include "nodes/primnodes.h" -#include "nodes/memnodes.h" +#include "access/funcindex.h" +#include "access/relscan.h" #include "executor/tuptable.h" +#include "nodes/params.h" +#include "access/sdir.h" +#include "nodes/memnodes.h" /* ---------------- * IndexInfo information diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 6c6d48ae8c4..992933c59f5 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -6,14 +6,13 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.2 1996/10/31 09:49:10 scrappy Exp $ + * $Id: nodes.h,v 1.3 1996/11/03 12:12:52 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef NODES_H #define NODES_H - /* * The first field of every node is NodeTag. Each node created (with makeNode) * will have one of the following tags as the value of its first field. diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 61e20dc2be9..b46a77ebe34 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.4 1996/10/30 02:02:08 momjian Exp $ + * $Id: parsenodes.h,v 1.5 1996/11/03 12:12:55 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSENODES_H #define PARSENODES_H -#include "nodes/primnodes.h" -#include "utils/tqual.h" +#include "utils/tqual.h" +#include "nodes/primnodes.h" /***************************************************************************** * Query Tree diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index b431a45b79a..856a4ef4c6d 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -6,16 +6,13 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: plannodes.h,v 1.2 1996/10/31 09:49:16 scrappy Exp $ + * $Id: plannodes.h,v 1.3 1996/11/03 12:12:57 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef PLANNODES_H #define PLANNODES_H - -#include "nodes/nodes.h" -#include "nodes/pg_list.h" #include "nodes/primnodes.h" /* ---------------------------------------------------------------- diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index cbdb723d06f..41e98fbb5d8 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: primnodes.h,v 1.4 1996/10/23 07:42:02 scrappy Exp $ + * $Id: primnodes.h,v 1.5 1996/11/03 12:12:58 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -14,9 +14,7 @@ #define PRIMNODES_H #include "nodes/pg_list.h" -#include "nodes/nodes.h" #include "access/attnum.h" - #include "utils/fcache.h" /* ---------------------------------------------------------------- |