aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/indexcmds.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-15 22:40:16 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-15 22:40:16 +0000
commit2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (patch)
treebb72a1ec4e38514c726a73b1344971307c2db01e /src/backend/commands/indexcmds.c
parent40a89e08b2d7bb592d940e56f696df4a6459e7a3 (diff)
downloadpostgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.tar.gz
postgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.zip
Remove unused #includes in *.c files.
Diffstat (limited to 'src/backend/commands/indexcmds.c')
-rw-r--r--src/backend/commands/indexcmds.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c
index e7f047477ca..91abbaf3321 100644
--- a/src/backend/commands/indexcmds.c
+++ b/src/backend/commands/indexcmds.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.4 1999/05/25 16:08:24 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.5 1999/07/15 22:39:01 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -15,7 +15,6 @@
#include <postgres.h>
-#include <access/attnum.h>
#include <access/genam.h>
#include <access/heapam.h>
#include <utils/builtins.h>
@@ -26,17 +25,10 @@
#include <catalog/pg_proc.h>
#include <catalog/pg_type.h>
#include <catalog/pg_opclass.h>
-#include <nodes/plannodes.h>
-#include <nodes/primnodes.h>
-#include <nodes/relation.h>
-#include <utils/relcache.h>
-#include <utils/lsyscache.h>
#include <commands/defrem.h>
#include <parser/parsetree.h> /* for getrelid() */
#include <optimizer/prep.h>
#include <optimizer/clauses.h>
-#include <storage/lmgr.h>
-#include <fmgr.h>
#define IsFuncIndex(ATTR_LIST) (((IndexElem*)lfirst(ATTR_LIST))->args!=NULL)