diff options
Diffstat (limited to 'src/include/access/htup.h')
-rw-r--r-- | src/include/access/htup.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/include/access/htup.h b/src/include/access/htup.h index 6e7674ea7c8..2479fe9d4b5 100644 --- a/src/include/access/htup.h +++ b/src/include/access/htup.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: htup.h,v 1.8 1998/01/31 04:39:22 momjian Exp $ + * $Id: htup.h,v 1.9 1998/02/26 04:40:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -28,25 +28,25 @@ */ typedef struct HeapTupleData { - unsigned int t_len; /* length of entire tuple */ + unsigned int t_len; /* length of entire tuple */ - Oid t_oid; /* OID of this tuple -- 4 bytes */ + Oid t_oid; /* OID of this tuple -- 4 bytes */ - CommandId t_cmin; /* insert CID stamp -- 4 bytes each */ - CommandId t_cmax; /* delete CommandId stamp */ + CommandId t_cmin; /* insert CID stamp -- 4 bytes each */ + CommandId t_cmax; /* delete CommandId stamp */ - TransactionId t_xmin; /* insert XID stamp -- 4 bytes each */ - TransactionId t_xmax; /* delete XID stamp */ + TransactionId t_xmin; /* insert XID stamp -- 4 bytes each */ + TransactionId t_xmax; /* delete XID stamp */ - ItemPointerData t_ctid; /* current TID of this tuple */ - - int16 t_natts; /* number of attributes */ + ItemPointerData t_ctid; /* current TID of this tuple */ - uint16 t_infomask; /* various infos */ + int16 t_natts; /* number of attributes */ - uint8 t_hoff; /* sizeof tuple header */ + uint16 t_infomask; /* various infos */ - bits8 t_bits[MinHeapTupleBitmapSize / 8]; + uint8 t_hoff; /* sizeof tuple header */ + + bits8 t_bits[MinHeapTupleBitmapSize / 8]; /* bit map of domains */ /* MORE DATA FOLLOWS AT END OF STRUCT */ |