summaryrefslogtreecommitdiff
path: root/src/include/nodes
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-15 23:04:24 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-15 23:04:24 +0000
commita9591ce66aa69e82196800b0f4f7b6e35aea8e49 (patch)
tree297fe17b4ac326fa1078134f10099c074e4052e0 /src/include/nodes
parent2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (diff)
downloadpostgresql-a9591ce66aa69e82196800b0f4f7b6e35aea8e49.tar.gz
Change #include's to use <> and "" as appropriate.
Diffstat (limited to 'src/include/nodes')
-rw-r--r--src/include/nodes/execnodes.h16
-rw-r--r--src/include/nodes/makefuncs.h4
-rw-r--r--src/include/nodes/memnodes.h8
-rw-r--r--src/include/nodes/nodeFuncs.h4
-rw-r--r--src/include/nodes/params.h4
-rw-r--r--src/include/nodes/parsenodes.h4
-rw-r--r--src/include/nodes/pg_list.h4
-rw-r--r--src/include/nodes/plannodes.h4
-rw-r--r--src/include/nodes/primnodes.h8
-rw-r--r--src/include/nodes/relation.h4
10 files changed, 30 insertions, 30 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index ca324c94b1..ca2e427e01 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -6,20 +6,20 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execnodes.h,v 1.31 1999/07/15 15:21:16 momjian Exp $
+ * $Id: execnodes.h,v 1.32 1999/07/15 23:03:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef EXECNODES_H
#define EXECNODES_H
-#include <nodes/primnodes.h>
-#include <executor/hashjoin.h>
-#include <access/relscan.h>
-#include <access/sdir.h>
-#include <nodes/params.h>
-#include <executor/tuptable.h>
-#include <access/funcindex.h>
+#include "nodes/primnodes.h"
+#include "executor/hashjoin.h"
+#include "access/relscan.h"
+#include "access/sdir.h"
+#include "nodes/params.h"
+#include "executor/tuptable.h"
+#include "access/funcindex.h"
/* ----------------
* IndexInfo information
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h
index 7ea2e7e142..6a387fd5c5 100644
--- a/src/include/nodes/makefuncs.h
+++ b/src/include/nodes/makefuncs.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: makefuncs.h,v 1.19 1999/07/15 15:21:16 momjian Exp $
+ * $Id: makefuncs.h,v 1.20 1999/07/15 23:03:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef MAKEFUNC_H
#define MAKEFUNC_H
-#include <nodes/parsenodes.h>
+#include "nodes/parsenodes.h"
extern Oper *makeOper(Oid opno,
Oid opid,
diff --git a/src/include/nodes/memnodes.h b/src/include/nodes/memnodes.h
index 76f99204c2..39130ef0ed 100644
--- a/src/include/nodes/memnodes.h
+++ b/src/include/nodes/memnodes.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: memnodes.h,v 1.13 1999/05/25 22:42:55 momjian Exp $
+ * $Id: memnodes.h,v 1.14 1999/07/15 23:03:53 momjian Exp $
*
* XXX the typedefs in this file are different from the other ???nodes.h;
* they are pointers to structures instead of the structures themselves.
@@ -18,9 +18,9 @@
#ifndef MEMNODES_H
#define MEMNODES_H
-#include <lib/fstack.h>
-#include <utils/memutils.h>
-#include <nodes/nodes.h>
+#include "lib/fstack.h"
+#include "utils/memutils.h"
+#include "nodes/nodes.h"
/*
* MemoryContext
diff --git a/src/include/nodes/nodeFuncs.h b/src/include/nodes/nodeFuncs.h
index 528924ad41..ccd1d3da09 100644
--- a/src/include/nodes/nodeFuncs.h
+++ b/src/include/nodes/nodeFuncs.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeFuncs.h,v 1.9 1999/07/15 15:21:17 momjian Exp $
+ * $Id: nodeFuncs.h,v 1.10 1999/07/15 23:03:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEFUNCS_H
#define NODEFUNCS_H
-#include <nodes/primnodes.h>
+#include "nodes/primnodes.h"
extern bool single_node(Node *node);
extern bool var_is_outer(Var *var);
diff --git a/src/include/nodes/params.h b/src/include/nodes/params.h
index 8d6a9a2eb6..b52314c463 100644
--- a/src/include/nodes/params.h
+++ b/src/include/nodes/params.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: params.h,v 1.10 1999/02/13 23:21:38 momjian Exp $
+ * $Id: params.h,v 1.11 1999/07/15 23:03:54 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PARAMS_H
#define PARAMS_H
-#include <access/attnum.h>
+#include "access/attnum.h"
/* ----------------------------------------------------------------
*
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index d804257ba6..ef9f51cb7b 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.75 1999/07/13 21:17:38 momjian Exp $
+ * $Id: parsenodes.h,v 1.76 1999/07/15 23:03:54 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PARSENODES_H
#define PARSENODES_H
-#include <nodes/primnodes.h>
+#include "nodes/primnodes.h"
/*****************************************************************************
* Query Tree
diff --git a/src/include/nodes/pg_list.h b/src/include/nodes/pg_list.h
index de481f4e46..3e20012b08 100644
--- a/src/include/nodes/pg_list.h
+++ b/src/include/nodes/pg_list.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_list.h,v 1.11 1999/02/22 05:26:47 momjian Exp $
+ * $Id: pg_list.h,v 1.12 1999/07/15 23:03:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PG_LIST_H
#define PG_LIST_H
-#include <nodes/nodes.h>
+#include "nodes/nodes.h"
/* ----------------------------------------------------------------
* node definitions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h
index 5c94d02932..3d319a66ff 100644
--- a/src/include/nodes/plannodes.h
+++ b/src/include/nodes/plannodes.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: plannodes.h,v 1.27 1999/05/25 22:42:58 momjian Exp $
+ * $Id: plannodes.h,v 1.28 1999/07/15 23:03:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PLANNODES_H
#define PLANNODES_H
-#include <nodes/execnodes.h>
+#include "nodes/execnodes.h"
/* ----------------------------------------------------------------
* Executor State types are used in the plannode structures
diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h
index 3b0cadfcdc..5f3fbb36c2 100644
--- a/src/include/nodes/primnodes.h
+++ b/src/include/nodes/primnodes.h
@@ -6,16 +6,16 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: primnodes.h,v 1.29 1999/05/25 22:42:59 momjian Exp $
+ * $Id: primnodes.h,v 1.30 1999/07/15 23:03:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PRIMNODES_H
#define PRIMNODES_H
-#include <utils/fcache.h>
-#include <access/attnum.h>
-#include <nodes/pg_list.h>
+#include "utils/fcache.h"
+#include "access/attnum.h"
+#include "nodes/pg_list.h"
/* ----------------------------------------------------------------
* node definitions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h
index c5d7d30840..e305870aa7 100644
--- a/src/include/nodes/relation.h
+++ b/src/include/nodes/relation.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: relation.h,v 1.33 1999/07/15 15:21:18 momjian Exp $
+ * $Id: relation.h,v 1.34 1999/07/15 23:03:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef RELATION_H
#define RELATION_H
-#include <nodes/parsenodes.h>
+#include "nodes/parsenodes.h"
/*
* Relids