]> granicus.if.org Git - postgresql/commitdiff
another one with #include file clean'd up
authorMarc G. Fournier <scrappy@hub.org>
Sat, 19 Oct 1996 03:12:50 +0000 (03:12 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 19 Oct 1996 03:12:50 +0000 (03:12 +0000)
src/backend/access/common/heapvalid.c

index b80c5dd9eb0abcfc608d50a26e5bb54872035e4a..bb49ec33f17b66a413b4f57b0f30c995d8b1539e 100644 (file)
@@ -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
  *