home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / lib / H / access / xtim.h < prev   
Encoding:
C/C++ Source or Header  |  1992-08-27  |  544 b   |  26 lines

  1. /*
  2.  * xtim.h --
  3.  *    POSTGRES transaction time definitions.
  4.  *
  5.  * Identification:
  6.  *    $Header: /private/postgres/src/lib/H/access/RCS/xtim.h,v 1.7 1991/05/07 13:57:55 kemnitz Exp $
  7.  */
  8.  
  9. #ifndef    XTimIncluded    /* Include this file only once. */
  10. #define XTimIncluded    1
  11.  
  12. /*
  13.  * TransactionIdGetCommitTime --
  14.  *    Returns commit time of transaction associated with an identifier.
  15.  *
  16.  * Note:
  17.  *    Assumes transaction identifier is valid.
  18.  */
  19. extern
  20. Time
  21. TransactionIdGetCommitTime ARGS((
  22.     TransactionId    transactionId
  23. ));
  24.  
  25. #endif    /* !defined(XTimIncluded) */
  26.