aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/common/indextuple.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-20 22:04:49 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-20 22:04:49 +0000
commitd458a1c747d80ce5a3627a39ff9c319cfeda550d (patch)
tree3f082b4d61a9101fa1e57ec92ebcc5c91dfb1831 /src/backend/access/common/indextuple.c
parent597a1de90331699f3a862e89aae9751ef2f6496e (diff)
downloadpostgresql-d458a1c747d80ce5a3627a39ff9c319cfeda550d.tar.gz
postgresql-d458a1c747d80ce5a3627a39ff9c319cfeda550d.zip
Other then:
indextuple.c:159: warning: `bp' might be used uninitialized in this function this directory passes -Wall -Werror under FreeBSD
Diffstat (limited to 'src/backend/access/common/indextuple.c')
-rw-r--r--src/backend/access/common/indextuple.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/backend/access/common/indextuple.c b/src/backend/access/common/indextuple.c
index d0696aa70ec..fbac15b4dea 100644
--- a/src/backend/access/common/indextuple.c
+++ b/src/backend/access/common/indextuple.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.4 1996/10/20 08:31:29 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.5 1996/10/20 22:04:41 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -29,6 +29,27 @@
#include "access/tupmacs.h"
+#include <string.h>
+
+#include "utils/palloc.h"
+
+#include <time.h>
+#include "storage/fd.h"
+#include "catalog/pg_am.h"
+#include "catalog/pg_class.h"
+#include "nodes/nodes.h"
+#include "rewrite/prs2lock.h"
+#include "access/skey.h"
+#include "access/strat.h"
+#include "utils/rel.h"
+#include "utils/nabstime.h"
+#include "access/htup.h"
+#include "storage/itemptr.h"
+#include "utils/tqual.h"
+#include "storage/buf.h"
+#include "access/relscan.h"
+#include "access/heapam.h"
+
static Size IndexInfoFindDataOffset(unsigned short t_info);
/* ----------------------------------------------------------------