OSDN Git Service

Update copyright for 2006. Update scripts.
[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-2006, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/access/hio.h,v 1.30 2006/03/05 15:58:53 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 Buffer RelationGetBufferForTuple(Relation relation, Size len,
22                                                   Buffer otherBuffer, bool use_fsm);
23
24 #endif   /* HIO_H */