aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/common/indextuple.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-19 03:28:20 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-19 03:28:20 +0000
commit5dedad99a11ead58828951dba9d6f91876fdadfc (patch)
treee8eb12b11c3453736e32510fe92ac219a06f9440 /src/backend/access/common/indextuple.c
parent69b42eb1a3bab84ca1afff2a1b79b199abd8e4b5 (diff)
downloadpostgresql-5dedad99a11ead58828951dba9d6f91876fdadfc.tar.gz
postgresql-5dedad99a11ead58828951dba9d6f91876fdadfc.zip
One at a time...another one is complete...
Diffstat (limited to 'src/backend/access/common/indextuple.c')
-rw-r--r--src/backend/access/common/indextuple.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/backend/access/common/indextuple.c b/src/backend/access/common/indextuple.c
index be5d2ccbd96..f7c0ec7b763 100644
--- a/src/backend/access/common/indextuple.c
+++ b/src/backend/access/common/indextuple.c
@@ -8,23 +8,25 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.1.1.1 1996/07/09 06:21:09 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.2 1996/10/19 03:28:20 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
-#include <string.h>
-#include "c.h"
-#include "access/ibit.h"
-#include "access/itup.h" /* where the declarations go */
-#include "access/heapam.h"
-#include "access/genam.h"
-#include "access/tupdesc.h"
-#include "access/tupmacs.h"
+#include "postgres.h"
+#include "storage/block.h"
+#include "storage/off.h"
#include "storage/itemptr.h"
-#include "utils/elog.h"
-#include "utils/palloc.h"
+#include "nodes/nodes.h"
+#include "access/attnum.h"
+#include "nodes/pg_list.h"
+#include "catalog/pg_attribute.h"
+#include "access/tupdesc.h"
+#include "access/itup.h"
+
+#include "utils/memutils.h"
+#include "access/ibit.h"
static Size IndexInfoFindDataOffset(unsigned short t_info);