aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeIndexscan.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/executor/nodeIndexscan.c
parent40a89e08b2d7bb592d940e56f696df4a6459e7a3 (diff)
downloadpostgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.tar.gz
postgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.zip
Remove unused #includes in *.c files.
Diffstat (limited to 'src/backend/executor/nodeIndexscan.c')
-rw-r--r--src/backend/executor/nodeIndexscan.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/executor/nodeIndexscan.c b/src/backend/executor/nodeIndexscan.c
index 57f2bb9d4d9..ade2a913026 100644
--- a/src/backend/executor/nodeIndexscan.c
+++ b/src/backend/executor/nodeIndexscan.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.37 1999/07/15 15:19:01 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.38 1999/07/15 22:39:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -37,12 +37,8 @@
#include "optimizer/clauses.h" /* for get_op, get_leftop, get_rightop */
#include "parser/parsetree.h" /* for rt_fetch() */
-#include "access/skey.h"
#include "access/heapam.h"
#include "access/genam.h"
-#include "catalog/index.h"
-#include "storage/bufmgr.h"
-#include "storage/lmgr.h"
#include "nodes/nodeFuncs.h"
/* ----------------