OSDN Git Service

Add:
[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  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: hio.h,v 1.14 2000/01/26 05:57:50 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef HIO_H
15 #define HIO_H
16
17 #include "access/htup.h"
18
19 extern void RelationPutHeapTuple(Relation relation, Buffer buffer,
20                                          HeapTuple tuple);
21 extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple);
22
23 #endif   /* HIO_H */