aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/hash/hashinsert.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-20 06:34:30 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-20 06:34:30 +0000
commit3cb7ff8db268cccf29a1f76ad8b63e5a34b17ab9 (patch)
tree702453a4508ebcc6cd43d70608316f8b3b074c04 /src/backend/access/hash/hashinsert.c
parent5eee45ea058508209ae80fdbce9d3ca24123387b (diff)
downloadpostgresql-3cb7ff8db268cccf29a1f76ad8b63e5a34b17ab9.tar.gz
postgresql-3cb7ff8db268cccf29a1f76ad8b63e5a34b17ab9.zip
Okay...another directory cleaned out and compilable
Diffstat (limited to 'src/backend/access/hash/hashinsert.c')
-rw-r--r--src/backend/access/hash/hashinsert.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/backend/access/hash/hashinsert.c b/src/backend/access/hash/hashinsert.c
index c514cc614d8..79cc04accd9 100644
--- a/src/backend/access/hash/hashinsert.c
+++ b/src/backend/access/hash/hashinsert.c
@@ -7,24 +7,16 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.1.1.1 1996/07/09 06:21:10 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.2 1996/10/20 06:34:16 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
-
-#include "storage/bufmgr.h"
-#include "storage/bufpage.h"
-#include "utils/elog.h"
-#include "utils/palloc.h"
+#include "postgres.h"
#include "utils/rel.h"
-#include "utils/excid.h"
-
-#include "access/heapam.h"
-#include "access/genam.h"
#include "access/hash.h"
+
static InsertIndexResult _hash_insertonpg(Relation rel, Buffer buf, int keysz, ScanKey scankey, HashItem hitem, Buffer metabuf);
static OffsetNumber _hash_pgaddtup(Relation rel, Buffer buf, int keysz, ScanKey itup_scankey, Size itemsize, HashItem hitem);