diff options
Diffstat (limited to 'src/include/commands')
-rw-r--r-- | src/include/commands/explain.h | 4 | ||||
-rw-r--r-- | src/include/commands/prepare.h | 6 | ||||
-rw-r--r-- | src/include/commands/tablecmds.h | 3 | ||||
-rw-r--r-- | src/include/commands/vacuum.h | 6 |
4 files changed, 6 insertions, 13 deletions
diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index 11c8e491fcc..8814102bfc4 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994-5, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/explain.h,v 1.26 2006/03/05 15:58:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/explain.h,v 1.27 2006/07/13 16:49:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -14,8 +14,6 @@ #define EXPLAIN_H #include "executor/executor.h" -#include "nodes/parsenodes.h" -#include "tcop/dest.h" extern void ExplainQuery(ExplainStmt *stmt, ParamListInfo params, diff --git a/src/include/commands/prepare.h b/src/include/commands/prepare.h index 49a822820a4..bd831c2e609 100644 --- a/src/include/commands/prepare.h +++ b/src/include/commands/prepare.h @@ -6,7 +6,7 @@ * * Copyright (c) 2002-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/commands/prepare.h,v 1.20 2006/04/25 14:11:59 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/prepare.h,v 1.21 2006/07/13 16:49:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -14,9 +14,7 @@ #define PREPARE_H #include "executor/executor.h" -#include "nodes/parsenodes.h" -#include "tcop/dest.h" - +#include "utils/timestamp.h" /* * The data structure representing a prepared statement diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h index 3452713bd0e..41c1fd9f14d 100644 --- a/src/include/commands/tablecmds.h +++ b/src/include/commands/tablecmds.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/tablecmds.h,v 1.28 2006/06/27 03:43:20 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/tablecmds.h,v 1.29 2006/07/13 16:49:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,7 +16,6 @@ #include "nodes/parsenodes.h" #include "utils/rel.h" -#include "access/tupdesc.h" extern Oid DefineRelation(CreateStmt *stmt, char relkind); diff --git a/src/include/commands/vacuum.h b/src/include/commands/vacuum.h index a78ab7a7b96..f7164f21efd 100644 --- a/src/include/commands/vacuum.h +++ b/src/include/commands/vacuum.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/vacuum.h,v 1.64 2006/07/10 16:20:51 alvherre Exp $ + * $PostgreSQL: pgsql/src/include/commands/vacuum.h,v 1.65 2006/07/13 16:49:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,12 +15,10 @@ #define VACUUM_H #include "access/htup.h" -#include "catalog/pg_attribute.h" #include "catalog/pg_statistic.h" #include "catalog/pg_type.h" #include "nodes/parsenodes.h" -#include "utils/rel.h" - +#include "storage/lock.h" /*---------- * ANALYZE builds one of these structs for each attribute (column) that is |