hio.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  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.11 1999/05/25 16:13:29 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef HIO_H
  14. #define HIO_H
  15. #include <access/htup.h>
  16. #include <utils/rel.h>
  17. extern void RelationPutHeapTuple(Relation relation, Buffer buffer,
  18.  HeapTuple tuple);
  19. extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple);
  20. #endif  /* HIO_H */