diff options
Diffstat (limited to 'src/include/access/heapam.h')
-rw-r--r-- | src/include/access/heapam.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index a1780dc49a5..bcc974f18ee 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -6,14 +6,17 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: heapam.h,v 1.5 1996/11/05 07:22:50 scrappy Exp $ + * $Id: heapam.h,v 1.6 1996/11/10 03:04:37 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef HEAPAM_H #define HEAPAM_H +#include <access/htup.h> #include <access/relscan.h> +#include <storage/block.h> +#include <utils/rel.h> /* ---------------------------------------------------------------- * heap access method statistics @@ -134,4 +137,9 @@ extern void PrintHeapAccessStatistics(HeapAccessStatistics stats); extern void PrintAndFreeHeapAccessStatistics(HeapAccessStatistics stats); extern void initam(void); +/* hio.c */ +extern void RelationPutHeapTuple(Relation relation, BlockNumber blockIndex, + HeapTuple tuple); +extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple); + #endif /* HEAPAM_H */ |