diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 08:18:44 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 08:18:44 +0000 |
commit | d1e9a761317271eb0c7a317fad123a18923ebfce (patch) | |
tree | a8c7dec8fc9c4ff70e9db6d042a5c862c6ffa2fa /src/include/executor | |
parent | 1c3a7767ca9319298ac996f0eab8970e0893dd4d (diff) | |
download | postgresql-d1e9a761317271eb0c7a317fad123a18923ebfce.tar.gz postgresql-d1e9a761317271eb0c7a317fad123a18923ebfce.zip |
Another run through.
This gets us a clean compile of 'common' and 'gist' with *clean* #include
files
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/execdesc.h | 3 | ||||
-rw-r--r-- | src/include/executor/executor.h | 22 |
2 files changed, 7 insertions, 18 deletions
diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h index 0244a62e538..2fb13bb9094 100644 --- a/src/include/executor/execdesc.h +++ b/src/include/executor/execdesc.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdesc.h,v 1.2 1996/11/04 12:11:40 scrappy Exp $ + * $Id: execdesc.h,v 1.3 1996/11/05 08:18:31 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -17,7 +17,6 @@ #include <tcop/dest.h> #include <nodes/plannodes.h> #include <nodes/parsenodes.h> -#include <nodes/nodes.h> /* ---------------- * query descriptor: diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index b91d857f93e..1469ff542f3 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -6,32 +6,22 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.3 1996/11/03 12:12:39 scrappy Exp $ + * $Id: executor.h,v 1.4 1996/11/05 08:18:34 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef EXECUTOR_H #define EXECUTOR_H +#include <catalog/pg_index.h> +#include <access/itup.h> +#include <stdio.h> +#include <executor/execdesc.h> + /* ---------------------------------------------------------------- - * #includes * ---------------------------------------------------------------- */ -#include <stdio.h> - -#include "access/itup.h" -#include "access/relscan.h" -#include "access/skey.h" -#include "access/sdir.h" -#include "catalog/pg_index.h" -#include "executor/execdesc.h" - -#ifndef HAVE_MEMMOVE -# include "regex/utils.h" -#else -# include <string.h> -#endif /* * prototypes from functions in execAmi.c |