aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/common/indexvalid.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-01 09:41:41 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-01 09:41:41 +0000
commita95674269f2499d6149c5f94e6acf015edcb4a34 (patch)
treeb91b68f03d13a5f89208d0411e6468a5e1ddfeed /src/backend/access/common/indexvalid.c
parent3516eda61c669945eec99fcd3bc8ccac4bb9829c (diff)
downloadpostgresql-a95674269f2499d6149c5f94e6acf015edcb4a34.tar.gz
postgresql-a95674269f2499d6149c5f94e6acf015edcb4a34.zip
More intelligent #include cleanups, as pointed out by Bryan...
Compiled with -Wall -Werror
Diffstat (limited to 'src/backend/access/common/indexvalid.c')
-rw-r--r--src/backend/access/common/indexvalid.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/backend/access/common/indexvalid.c b/src/backend/access/common/indexvalid.c
index 4d5c700207f..4100e179d5f 100644
--- a/src/backend/access/common/indexvalid.c
+++ b/src/backend/access/common/indexvalid.c
@@ -7,28 +7,20 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.8 1996/10/31 07:48:37 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.9 1996/11/01 09:41:38 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
-#include <time.h>
-
#include "postgres.h"
-#include "access/attnum.h"
-#include "catalog/pg_attribute.h"
+
+#include "access/htup.h"
+#include "access/tupdesc.h"
+
#include "executor/execdebug.h"
-#include "nodes/nodes.h"
-#include "nodes/pg_list.h"
-#include "storage/off.h"
-#include "storage/block.h"
-#include "utils/nabstime.h"
#include "access/skey.h"
-#include "access/tupdesc.h"
-#include "storage/itemptr.h"
-#include "access/htup.h"
#include "access/itup.h"