aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/common/heapvalid.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-19 03:12:50 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-19 03:12:50 +0000
commit69b42eb1a3bab84ca1afff2a1b79b199abd8e4b5 (patch)
treec263f81715c26a055d22fe4baccf91f5ce9b9e0e /src/backend/access/common/heapvalid.c
parent9834913cd004a579ef2ef0e7e668dfc4ddbd6c3b (diff)
downloadpostgresql-69b42eb1a3bab84ca1afff2a1b79b199abd8e4b5.tar.gz
postgresql-69b42eb1a3bab84ca1afff2a1b79b199abd8e4b5.zip
another one with #include file clean'd up
Diffstat (limited to 'src/backend/access/common/heapvalid.c')
-rw-r--r--src/backend/access/common/heapvalid.c36
1 files changed, 26 insertions, 10 deletions
diff --git a/src/backend/access/common/heapvalid.c b/src/backend/access/common/heapvalid.c
index b80c5dd9eb0..bb49ec33f17 100644
--- a/src/backend/access/common/heapvalid.c
+++ b/src/backend/access/common/heapvalid.c
@@ -7,27 +7,43 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.1.1.1 1996/07/09 06:21:09 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.2 1996/10/19 03:12:50 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
-#include "c.h"
+#include "postgres.h"
+
+#include "storage/block.h"
+#include "storage/off.h"
+#include "storage/itemptr.h"
+#include "utils/nabstime.h"
#include "access/htup.h"
+
+#include "catalog/pg_attribute.h"
+#include "access/attnum.h"
+#include "nodes/nodes.h"
+#include "nodes/pg_list.h"
+#include "access/tupdesc.h"
+
#include "access/skey.h"
-#include "access/heapam.h"
-#include "utils/tqual.h"
-#include "access/valid.h" /* where the declarations go */
-#include "access/xact.h"
#include "storage/buf.h"
-#include "storage/bufmgr.h"
-#include "storage/bufpage.h"
+
#include "storage/itemid.h"
-#include "fmgr.h"
-#include "utils/elog.h"
+
+#include "storage/fd.h"
+#include "catalog/pg_am.h"
+#include "catalog/pg_class.h"
+#include "rewrite/prs2lock.h"
+#include "access/strat.h"
#include "utils/rel.h"
+#include "storage/item.h"
+#include "storage/bufpage.h"
+
+#include "utils/tqual.h"
+
/* ----------------
* heap_keytest
*