/*------------------------------------------------------------------------- * * htup.h-- * POSTGRES heap tuple definitions. * * * Copyright (c) 1994, Regents of the University of California * * $Id: htup.h,v 1.10 1998/09/01 04:34:14 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef HTUP_H #define HTUP_H #include #include #define MinHeapTupleBitmapSize 32 /* 8 * 4 */ /* check these, they are likely to be more severely limited by t_hoff */ #define MaxHeapAttributeNumber 1600 /* 8 * 200 */ /* * to avoid wasting space, the attributes should be layed out in such a * way to reduce structure padding. */ typedef struct HeapTupleData { unsigned int t_len; /* length of entire tuple */ Oid t_oid; /* OID of this tuple -- 4 bytes */ 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 */ ItemPointerData t_ctid; /* current TID of this tuple */ int16 t_natts; /* number of attributes */ uint16 t_infomask; /* various infos */ uint8 t_hoff; /* sizeof tuple header */ bits8 t_bits[MinHeapTupleBitmapSize / 8]; /* bit map of domains */ /* MORE DATA FOLLOWS AT END OF STRUCT */ } HeapTupleData; typedef HeapTupleData *HeapTuple; #define SelfItemPointerAttributeNumber (-1) #define ObjectIdAttributeNumber (-2) #define MinTransactionIdAttributeNumber (-3) #define MinCommandIdAttributeNumber (-4) #define MaxTransactionIdAttributeNumber (-5) #define MaxCommandIdAttributeNumber (-6) #define FirstLowInvalidHeapAttributeNumber (-7) /* If you make any changes above, the order off offsets in this must change */ extern long heap_sysoffset[]; /* ---------------- * support macros * ---------------- */ #define GETSTRUCT(TUP) (((char *)(TUP)) + ((HeapTuple)(TUP))->t_hoff) /* * BITMAPLEN(NATTS) - * Computes minimum size of bitmap given number of domains. */ #define BITMAPLEN(NATTS) \ ((((((int)(NATTS) - 1) >> 3) + 4 - (MinHeapTupleBitmapSize >> 3)) \ & ~03) + (MinHeapTupleBitmapSize >> 3)) /* * HeapTupleIsValid * True iff the heap tuple is valid. */ #define HeapTupleIsValid(tuple) PointerIsValid(tuple) /* * information stored in t_infomask: */ #define HEAP_HASNULL 0x0001 /* has null attribute(s) */ #define HEAP_HASVARLENA 0x0002 /* has variable length * attribute(s) */ #define HEAP_XMIN_COMMITTED 0x0100 /* t_xmin committed */ #define HEAP_XMIN_INVALID 0x0200 /* t_xmin invalid/aborted */ #define HEAP_XMAX_COMMITTED 0x0400 /* t_xmax committed */ #define HEAP_XMAX_INVALID 0x0800 /* t_xmax invalid/aborted */ #define HEAP_XACT_MASK 0x0F00 /* */ #define HeapTupleNoNulls(tuple) \ (!(((HeapTuple) (tuple))->t_infomask & HEAP_HASNULL)) #define HeapTupleAllFixed(tuple) \ (!(((HeapTuple) (tuple))->t_infomask & HEAP_HASVARLENA)) #endif /* HTUP_H */