hio.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
- /*-------------------------------------------------------------------------
- *
- * hio.h
- * POSTGRES heap access method input/output definitions.
- *
- *
- * Copyright (c) 1994, Regents of the University of California
- *
- * $Id: hio.h,v 1.11 1999/05/25 16:13:29 momjian Exp $
- *
- *-------------------------------------------------------------------------
- */
- #ifndef HIO_H
- #define HIO_H
- #include <access/htup.h>
- #include <utils/rel.h>
- extern void RelationPutHeapTuple(Relation relation, Buffer buffer,
- HeapTuple tuple);
- extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple);
- #endif /* HIO_H */