OSDN Git Service

Moved from backend/access to include/access
[pg-rex/syncrep.git] / src / include / access / hio.h
1 /*-------------------------------------------------------------------------
2  *
3  * hio.h--
4  *    POSTGRES heap access method input/output definitions.
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: hio.h,v 1.1 1996/08/27 21:50:14 scrappy Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef HIO_H
14 #define HIO_H
15
16 #include "c.h"
17
18 #include "storage/block.h"
19 #include "access/htup.h"
20 #include "utils/rel.h"
21
22 extern void RelationPutHeapTuple(Relation relation, BlockNumber blockIndex,
23                                  HeapTuple tuple);
24 extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple);
25
26 #endif  /* HIO_H */