OSDN Git Service

pgindent run before 6.3 release, with Thomas' requested changes.
[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.7 1998/02/26 04:40:11 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef HIO_H
14 #define HIO_H
15
16 #include <access/htup.h>
17 #include <utils/rel.h>
18
19
20 extern void
21 RelationPutHeapTuple(Relation relation, BlockNumber blockIndex,
22                                          HeapTuple tuple);
23 extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple);
24
25 #endif                                                  /* HIO_H */