diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-09-01 10:03:22 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-09-01 10:04:27 -0400 |
commit | 6416a82a62db4e66b2edb0fa8fc83a580c3f1931 (patch) | |
tree | 748a06b7c1a122d741b87a6b11217d7749b64fe2 /src/backend/commands/indexcmds.c | |
parent | 63d06ef59156719efd0208c62e764a69611b3f12 (diff) | |
download | postgresql-6416a82a62db4e66b2edb0fa8fc83a580c3f1931.tar.gz postgresql-6416a82a62db4e66b2edb0fa8fc83a580c3f1931.zip |
Remove unnecessary #include references, per pgrminclude script.
Diffstat (limited to 'src/backend/commands/indexcmds.c')
-rw-r--r-- | src/backend/commands/indexcmds.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 77648b47743..80925d58a42 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -15,13 +15,9 @@ #include "postgres.h" -#include "access/genam.h" -#include "access/heapam.h" #include "access/reloptions.h" -#include "access/transam.h" #include "access/xact.h" #include "catalog/catalog.h" -#include "catalog/heap.h" #include "catalog/index.h" #include "catalog/indexing.h" #include "catalog/pg_opclass.h" @@ -29,7 +25,6 @@ #include "catalog/pg_tablespace.h" #include "commands/dbcommands.h" #include "commands/defrem.h" -#include "commands/tablecmds.h" #include "commands/tablespace.h" #include "mb/pg_wchar.h" #include "miscadmin.h" @@ -39,9 +34,7 @@ #include "parser/parse_coerce.h" #include "parser/parse_func.h" #include "parser/parse_oper.h" -#include "parser/parsetree.h" #include "storage/lmgr.h" -#include "storage/proc.h" #include "storage/procarray.h" #include "utils/acl.h" #include "utils/builtins.h" @@ -49,7 +42,6 @@ #include "utils/inval.h" #include "utils/lsyscache.h" #include "utils/memutils.h" -#include "utils/relcache.h" #include "utils/snapmgr.h" #include "utils/syscache.h" #include "utils/tqual.h" |