diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 23:57:43 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 23:57:43 +0000 |
commit | 510ebf75a189db52bfaac0a74b078fa58611ed03 (patch) | |
tree | ebc2e8ed440fcbab6738323d8137b54d8bfe7ccd /src/backend/commands/command.c | |
parent | d46d53387f41b2536873870ed63c5cc7d49f007c (diff) | |
download | postgresql-510ebf75a189db52bfaac0a74b078fa58611ed03.tar.gz postgresql-510ebf75a189db52bfaac0a74b078fa58611ed03.zip |
Another first pass at cleaning up the #includes
Diffstat (limited to 'src/backend/commands/command.c')
-rw-r--r-- | src/backend/commands/command.c | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/src/backend/commands/command.c b/src/backend/commands/command.c index ac1900d3e3e..13c56d888c5 100644 --- a/src/backend/commands/command.c +++ b/src/backend/commands/command.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.3 1996/10/21 09:37:23 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.4 1996/11/03 23:57:21 scrappy Exp $ * * NOTES * The PortalExecutorHeapMemory crap needs to be eliminated @@ -22,32 +22,9 @@ */ #include "postgres.h" -#include "catalog/pg_attribute.h" -#include "access/attnum.h" -#include "nodes/pg_list.h" -#include "access/tupdesc.h" -#include "storage/fd.h" -#include "catalog/pg_am.h" -#include "catalog/pg_class.h" -#include "nodes/nodes.h" -#include "rewrite/prs2lock.h" -#include "access/skey.h" -#include "access/strat.h" -#include "utils/rel.h" - -#include "storage/block.h" -#include "storage/off.h" -#include "storage/itemptr.h" -#include <time.h> -#include "utils/nabstime.h" -#include "access/htup.h" - -#include "utils/tqual.h" -#include "storage/buf.h" #include "access/relscan.h" #include "nodes/memnodes.h" -#include "nodes/primnodes.h" #include "nodes/parsenodes.h" #include "nodes/params.h" #include "access/sdir.h" @@ -64,9 +41,6 @@ #include "utils/mcxt.h" -#include <stdio.h> -#include "catalog/pg_index.h" -#include "access/itup.h" #include "executor/executor.h" #include "executor/execdefs.h" @@ -92,7 +66,6 @@ #include "catalog/pg_type.h" -#include "utils/geo-decls.h" #include "utils/builtins.h" /* ---------------- |