diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 07:44:18 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 07:44:18 +0000 |
commit | 87b07a3974eb5bfab015ef1c1eeb4ef196daa7e9 (patch) | |
tree | 201a8da155d24d0e6a3d7f001863473ff2f88335 | |
parent | 9e3d4c43a73e3670e60f04fab2625eed419307e5 (diff) | |
download | postgresql-87b07a3974eb5bfab015ef1c1eeb4ef196daa7e9.tar.gz postgresql-87b07a3974eb5bfab015ef1c1eeb4ef196daa7e9.zip |
Further include file cleanups
-rw-r--r-- | src/include/nodes/relation.h | 8 | ||||
-rw-r--r-- | src/include/optimizer/xfunc.h | 5 |
2 files changed, 6 insertions, 7 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 037d722c1a6..7c0bce12e2c 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -6,17 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: relation.h,v 1.2 1996/10/31 09:49:18 scrappy Exp $ + * $Id: relation.h,v 1.3 1996/11/06 07:44:18 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef RELATION_H #define RELATION_H -#include "nodes/pg_list.h" -#include "nodes/primnodes.h" -#include "nodes/parsenodes.h" -#include "nodes/nodes.h" +#include <nodes/parsenodes.h> +#include <nodes/primnodes.h> /* * Relid diff --git a/src/include/optimizer/xfunc.h b/src/include/optimizer/xfunc.h index b9e5cee2575..a1715bb544c 100644 --- a/src/include/optimizer/xfunc.h +++ b/src/include/optimizer/xfunc.h @@ -6,14 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: xfunc.h,v 1.1 1996/08/28 07:23:30 scrappy Exp $ + * $Id: xfunc.h,v 1.2 1996/11/06 07:44:13 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef XFUNC_H #define XFUNC_H -#include "nodes/relation.h" +#include <utils/rel.h> +#include <nodes/relation.h> /* command line arg flags */ #define XFUNC_OFF -1 /* do no optimization of expensive preds */ |