| PostgreSQL Tuples (cont)
Tuple-related data types: (cont)| 
typedef struct HeapTupleFields  
{
  TransactionId t_xmin;  
  TransactionId t_xmax;  
  union {
    CommandId   t_cid;   
    TransactionId t_xvac;
  } t_field3;
} HeapTupleFields;
 | 
 
Note that not all system fields from stored tuple appear
 
 oidis stored after the tuple header, if used both xmin/xmaxare stored, but only one ofcmin/cmax |