PostgreSQL Tuples (cont)
Tuple-related data types: (cont)
typedef struct HeapTupleFields
{
TransactionId t_xmin;
TransactionId t_xmax;
CommandId t_cid;
} HeapTupleFields;
|
Note that not all system fields from stored tuple appear
- both
xmin /xmax are stored, but only one of cmin /cmax
|