aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/common/heaptuple.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-21 11:49:41 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-21 11:49:41 +0000
commit82b83f6f71a1c9ab6544b9572c97dbebd70b446c (patch)
treee3fff30c0c3c247b6e831181b2dea6bd5739d302 /src/backend/access/common/heaptuple.c
parent9a7fda57eefacf8241809ec00210b9d1be5f5878 (diff)
downloadpostgresql-82b83f6f71a1c9ab6544b9572c97dbebd70b446c.tar.gz
postgresql-82b83f6f71a1c9ab6544b9572c97dbebd70b446c.zip
Cosmetic changes to ordering of #include files
Diffstat (limited to 'src/backend/access/common/heaptuple.c')
-rw-r--r--src/backend/access/common/heaptuple.c55
1 files changed, 27 insertions, 28 deletions
diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c
index 960445ed572..31dc0835576 100644
--- a/src/backend/access/common/heaptuple.c
+++ b/src/backend/access/common/heaptuple.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.8 1996/10/20 22:04:36 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.9 1996/10/21 11:49:35 scrappy Exp $
*
* NOTES
* The old interface functions have been converted to macros
@@ -17,35 +17,42 @@
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
-
-#include "storage/block.h"
-#include "storage/off.h"
-#include "storage/itemptr.h"
+#include <stdio.h>
#include <time.h>
-#include "utils/nabstime.h"
-#include "access/htup.h"
-
-#include "storage/buf.h"
-
-#include "storage/itemid.h"
-#include "storage/item.h"
-#include "storage/bufpage.h"
-#include "catalog/pg_attribute.h"
+#include "postgres.h"
#include "access/attnum.h"
-#include "nodes/pg_list.h"
-#include "access/tupdesc.h"
-#include "storage/fd.h"
+#include "access/tupmacs.h"
#include "catalog/pg_am.h"
+#include "catalog/pg_attribute.h"
#include "catalog/pg_class.h"
#include "nodes/nodes.h"
-#include "rewrite/prs2lock.h"
+#include "nodes/pg_list.h"
+#include "storage/block.h"
+#include "storage/buf.h"
+#include "storage/fd.h"
+#include "storage/ipc.h"
+#include "storage/item.h"
+#include "storage/itemid.h"
+#include "storage/off.h"
+#include "utils/memutils.h"
+#include "utils/nabstime.h"
+#include "utils/palloc.h"
+
#include "access/skey.h"
+#include "access/tupdesc.h"
+#include "rewrite/prs2lock.h"
+#include "storage/bufpage.h"
+#include "storage/itemptr.h"
+
#include "access/strat.h"
+
+#include "access/htup.h"
#include "utils/rel.h"
-#include "utils/memutils.h"
+#include "storage/bufmgr.h"
+
+#include "access/transam.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
@@ -53,14 +60,6 @@
# include <string.h>
#endif
-#include "access/tupmacs.h"
-
-#include "utils/palloc.h"
-
-#include <stdio.h>
-#include "storage/ipc.h"
-#include "storage/bufmgr.h"
-#include "access/transam.h"
/* this is so the sparcstation debugger works */