| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef HTUP_DETAILS_H |
| #define HTUP_DETAILS_H |
|
|
| #include "access/htup.h" |
| #include "access/transam.h" |
| #include "access/tupdesc.h" |
| #include "access/tupmacs.h" |
| #include "storage/bufpage.h" |
| #include "varatt.h" |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define MaxTupleAttributeNumber 1664 |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define MaxHeapAttributeNumber 1600 |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| typedef struct HeapTupleFields |
| { |
| TransactionId t_xmin; |
| TransactionId t_xmax; |
|
|
| union |
| { |
| CommandId t_cid; |
| TransactionId t_xvac; |
| } t_field3; |
| } HeapTupleFields; |
|
|
| typedef struct DatumTupleFields |
| { |
| int32 datum_len_; |
|
|
| int32 datum_typmod; |
|
|
| Oid datum_typeid; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| } DatumTupleFields; |
|
|
| struct HeapTupleHeaderData |
| { |
| union |
| { |
| HeapTupleFields t_heap; |
| DatumTupleFields t_datum; |
| } t_choice; |
|
|
| ItemPointerData t_ctid; |
| |
|
|
| |
|
|
| #define FIELDNO_HEAPTUPLEHEADERDATA_INFOMASK2 2 |
| uint16 t_infomask2; |
|
|
| #define FIELDNO_HEAPTUPLEHEADERDATA_INFOMASK 3 |
| uint16 t_infomask; |
|
|
| #define FIELDNO_HEAPTUPLEHEADERDATA_HOFF 4 |
| uint8 t_hoff; |
|
|
| |
|
|
| #define FIELDNO_HEAPTUPLEHEADERDATA_BITS 5 |
| bits8 t_bits[FLEXIBLE_ARRAY_MEMBER]; |
|
|
| |
| }; |
|
|
| |
|
|
| #define SizeofHeapTupleHeader offsetof(HeapTupleHeaderData, t_bits) |
|
|
| |
| |
| |
| #define HEAP_HASNULL 0x0001 |
| #define HEAP_HASVARWIDTH 0x0002 |
| #define HEAP_HASEXTERNAL 0x0004 |
| #define HEAP_HASOID_OLD 0x0008 |
| #define HEAP_XMAX_KEYSHR_LOCK 0x0010 |
| #define HEAP_COMBOCID 0x0020 |
| #define HEAP_XMAX_EXCL_LOCK 0x0040 |
| #define HEAP_XMAX_LOCK_ONLY 0x0080 |
|
|
| |
| #define HEAP_XMAX_SHR_LOCK (HEAP_XMAX_EXCL_LOCK | HEAP_XMAX_KEYSHR_LOCK) |
|
|
| #define HEAP_LOCK_MASK (HEAP_XMAX_SHR_LOCK | HEAP_XMAX_EXCL_LOCK | \ |
| HEAP_XMAX_KEYSHR_LOCK) |
| #define HEAP_XMIN_COMMITTED 0x0100 |
| #define HEAP_XMIN_INVALID 0x0200 |
| #define HEAP_XMIN_FROZEN (HEAP_XMIN_COMMITTED|HEAP_XMIN_INVALID) |
| #define HEAP_XMAX_COMMITTED 0x0400 |
| #define HEAP_XMAX_INVALID 0x0800 |
| #define HEAP_XMAX_IS_MULTI 0x1000 |
| #define HEAP_UPDATED 0x2000 |
| #define HEAP_MOVED_OFF 0x4000 |
| |
| |
| #define HEAP_MOVED_IN 0x8000 |
| |
| |
| #define HEAP_MOVED (HEAP_MOVED_OFF | HEAP_MOVED_IN) |
|
|
| #define HEAP_XACT_MASK 0xFFF0 |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define HEAP_XMAX_IS_LOCKED_ONLY(infomask) \ |
| (((infomask) & HEAP_XMAX_LOCK_ONLY) || \ |
| (((infomask) & (HEAP_XMAX_IS_MULTI | HEAP_LOCK_MASK)) == HEAP_XMAX_EXCL_LOCK)) |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define HEAP_LOCKED_UPGRADED(infomask) \ |
| ( \ |
| ((infomask) & HEAP_XMAX_IS_MULTI) != 0 && \ |
| ((infomask) & HEAP_XMAX_LOCK_ONLY) != 0 && \ |
| (((infomask) & (HEAP_XMAX_EXCL_LOCK | HEAP_XMAX_KEYSHR_LOCK)) == 0) \ |
| ) |
|
|
| |
| |
| |
| #define HEAP_XMAX_IS_SHR_LOCKED(infomask) \ |
| (((infomask) & HEAP_LOCK_MASK) == HEAP_XMAX_SHR_LOCK) |
| #define HEAP_XMAX_IS_EXCL_LOCKED(infomask) \ |
| (((infomask) & HEAP_LOCK_MASK) == HEAP_XMAX_EXCL_LOCK) |
| #define HEAP_XMAX_IS_KEYSHR_LOCKED(infomask) \ |
| (((infomask) & HEAP_LOCK_MASK) == HEAP_XMAX_KEYSHR_LOCK) |
|
|
| |
| #define HEAP_XMAX_BITS (HEAP_XMAX_COMMITTED | HEAP_XMAX_INVALID | \ |
| HEAP_XMAX_IS_MULTI | HEAP_LOCK_MASK | HEAP_XMAX_LOCK_ONLY) |
|
|
| |
| |
| |
| #define HEAP_NATTS_MASK 0x07FF |
| |
| #define HEAP_KEYS_UPDATED 0x2000 |
| |
| #define HEAP_HOT_UPDATED 0x4000 |
| #define HEAP_ONLY_TUPLE 0x8000 |
|
|
| #define HEAP2_XACT_MASK 0xE000 |
|
|
| |
| |
| |
| |
| |
| |
| #define HEAP_TUPLE_HAS_MATCH HEAP_ONLY_TUPLE |
|
|
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| #define HeapTupleHeaderGetRawXmin(tup) \ |
| ( \ |
| (tup)->t_choice.t_heap.t_xmin \ |
| ) |
|
|
| #define HeapTupleHeaderGetXmin(tup) \ |
| ( \ |
| HeapTupleHeaderXminFrozen(tup) ? \ |
| FrozenTransactionId : HeapTupleHeaderGetRawXmin(tup) \ |
| ) |
|
|
| #define HeapTupleHeaderSetXmin(tup, xid) \ |
| ( \ |
| (tup)->t_choice.t_heap.t_xmin = (xid) \ |
| ) |
|
|
| #define HeapTupleHeaderXminCommitted(tup) \ |
| ( \ |
| ((tup)->t_infomask & HEAP_XMIN_COMMITTED) != 0 \ |
| ) |
|
|
| #define HeapTupleHeaderXminInvalid(tup) \ |
| ( \ |
| ((tup)->t_infomask & (HEAP_XMIN_COMMITTED|HEAP_XMIN_INVALID)) == \ |
| HEAP_XMIN_INVALID \ |
| ) |
|
|
| #define HeapTupleHeaderXminFrozen(tup) \ |
| ( \ |
| ((tup)->t_infomask & (HEAP_XMIN_FROZEN)) == HEAP_XMIN_FROZEN \ |
| ) |
|
|
| #define HeapTupleHeaderSetXminCommitted(tup) \ |
| ( \ |
| AssertMacro(!HeapTupleHeaderXminInvalid(tup)), \ |
| ((tup)->t_infomask |= HEAP_XMIN_COMMITTED) \ |
| ) |
|
|
| #define HeapTupleHeaderSetXminInvalid(tup) \ |
| ( \ |
| AssertMacro(!HeapTupleHeaderXminCommitted(tup)), \ |
| ((tup)->t_infomask |= HEAP_XMIN_INVALID) \ |
| ) |
|
|
| #define HeapTupleHeaderSetXminFrozen(tup) \ |
| ( \ |
| AssertMacro(!HeapTupleHeaderXminInvalid(tup)), \ |
| ((tup)->t_infomask |= HEAP_XMIN_FROZEN) \ |
| ) |
|
|
| |
| |
| |
| |
| |
| |
| |
| #define HeapTupleHeaderGetUpdateXid(tup) \ |
| ( \ |
| (!((tup)->t_infomask & HEAP_XMAX_INVALID) && \ |
| ((tup)->t_infomask & HEAP_XMAX_IS_MULTI) && \ |
| !((tup)->t_infomask & HEAP_XMAX_LOCK_ONLY)) ? \ |
| HeapTupleGetUpdateXid(tup) \ |
| : \ |
| HeapTupleHeaderGetRawXmax(tup) \ |
| ) |
|
|
| #define HeapTupleHeaderGetRawXmax(tup) \ |
| ( \ |
| (tup)->t_choice.t_heap.t_xmax \ |
| ) |
|
|
| #define HeapTupleHeaderSetXmax(tup, xid) \ |
| ( \ |
| (tup)->t_choice.t_heap.t_xmax = (xid) \ |
| ) |
|
|
| |
| |
| |
| |
| |
| |
| #define HeapTupleHeaderGetRawCommandId(tup) \ |
| ( \ |
| (tup)->t_choice.t_heap.t_field3.t_cid \ |
| ) |
|
|
| |
| #define HeapTupleHeaderSetCmin(tup, cid) \ |
| do { \ |
| Assert(!((tup)->t_infomask & HEAP_MOVED)); \ |
| (tup)->t_choice.t_heap.t_field3.t_cid = (cid); \ |
| (tup)->t_infomask &= ~HEAP_COMBOCID; \ |
| } while (0) |
|
|
| |
| #define HeapTupleHeaderSetCmax(tup, cid, iscombo) \ |
| do { \ |
| Assert(!((tup)->t_infomask & HEAP_MOVED)); \ |
| (tup)->t_choice.t_heap.t_field3.t_cid = (cid); \ |
| if (iscombo) \ |
| (tup)->t_infomask |= HEAP_COMBOCID; \ |
| else \ |
| (tup)->t_infomask &= ~HEAP_COMBOCID; \ |
| } while (0) |
|
|
| #define HeapTupleHeaderGetXvac(tup) \ |
| ( \ |
| ((tup)->t_infomask & HEAP_MOVED) ? \ |
| (tup)->t_choice.t_heap.t_field3.t_xvac \ |
| : \ |
| InvalidTransactionId \ |
| ) |
|
|
| #define HeapTupleHeaderSetXvac(tup, xid) \ |
| do { \ |
| Assert((tup)->t_infomask & HEAP_MOVED); \ |
| (tup)->t_choice.t_heap.t_field3.t_xvac = (xid); \ |
| } while (0) |
|
|
| StaticAssertDecl(MaxOffsetNumber < SpecTokenOffsetNumber, |
| "invalid speculative token constant"); |
|
|
| #define HeapTupleHeaderIsSpeculative(tup) \ |
| ( \ |
| (ItemPointerGetOffsetNumberNoCheck(&(tup)->t_ctid) == SpecTokenOffsetNumber) \ |
| ) |
|
|
| #define HeapTupleHeaderGetSpeculativeToken(tup) \ |
| ( \ |
| AssertMacro(HeapTupleHeaderIsSpeculative(tup)), \ |
| ItemPointerGetBlockNumber(&(tup)->t_ctid) \ |
| ) |
|
|
| #define HeapTupleHeaderSetSpeculativeToken(tup, token) \ |
| ( \ |
| ItemPointerSet(&(tup)->t_ctid, token, SpecTokenOffsetNumber) \ |
| ) |
|
|
| #define HeapTupleHeaderIndicatesMovedPartitions(tup) \ |
| ItemPointerIndicatesMovedPartitions(&(tup)->t_ctid) |
|
|
| #define HeapTupleHeaderSetMovedPartitions(tup) \ |
| ItemPointerSetMovedPartitions(&(tup)->t_ctid) |
|
|
| #define HeapTupleHeaderGetDatumLength(tup) \ |
| VARSIZE(tup) |
|
|
| #define HeapTupleHeaderSetDatumLength(tup, len) \ |
| SET_VARSIZE(tup, len) |
|
|
| #define HeapTupleHeaderGetTypeId(tup) \ |
| ( \ |
| (tup)->t_choice.t_datum.datum_typeid \ |
| ) |
|
|
| #define HeapTupleHeaderSetTypeId(tup, typeid) \ |
| ( \ |
| (tup)->t_choice.t_datum.datum_typeid = (typeid) \ |
| ) |
|
|
| #define HeapTupleHeaderGetTypMod(tup) \ |
| ( \ |
| (tup)->t_choice.t_datum.datum_typmod \ |
| ) |
|
|
| #define HeapTupleHeaderSetTypMod(tup, typmod) \ |
| ( \ |
| (tup)->t_choice.t_datum.datum_typmod = (typmod) \ |
| ) |
|
|
| |
| |
| |
| |
| |
| |
| #define HeapTupleHeaderIsHotUpdated(tup) \ |
| ( \ |
| ((tup)->t_infomask2 & HEAP_HOT_UPDATED) != 0 && \ |
| ((tup)->t_infomask & HEAP_XMAX_INVALID) == 0 && \ |
| !HeapTupleHeaderXminInvalid(tup) \ |
| ) |
|
|
| #define HeapTupleHeaderSetHotUpdated(tup) \ |
| ( \ |
| (tup)->t_infomask2 |= HEAP_HOT_UPDATED \ |
| ) |
|
|
| #define HeapTupleHeaderClearHotUpdated(tup) \ |
| ( \ |
| (tup)->t_infomask2 &= ~HEAP_HOT_UPDATED \ |
| ) |
|
|
| #define HeapTupleHeaderIsHeapOnly(tup) \ |
| ( \ |
| ((tup)->t_infomask2 & HEAP_ONLY_TUPLE) != 0 \ |
| ) |
|
|
| #define HeapTupleHeaderSetHeapOnly(tup) \ |
| ( \ |
| (tup)->t_infomask2 |= HEAP_ONLY_TUPLE \ |
| ) |
|
|
| #define HeapTupleHeaderClearHeapOnly(tup) \ |
| ( \ |
| (tup)->t_infomask2 &= ~HEAP_ONLY_TUPLE \ |
| ) |
|
|
| #define HeapTupleHeaderHasMatch(tup) \ |
| ( \ |
| ((tup)->t_infomask2 & HEAP_TUPLE_HAS_MATCH) != 0 \ |
| ) |
|
|
| #define HeapTupleHeaderSetMatch(tup) \ |
| ( \ |
| (tup)->t_infomask2 |= HEAP_TUPLE_HAS_MATCH \ |
| ) |
|
|
| #define HeapTupleHeaderClearMatch(tup) \ |
| ( \ |
| (tup)->t_infomask2 &= ~HEAP_TUPLE_HAS_MATCH \ |
| ) |
|
|
| #define HeapTupleHeaderGetNatts(tup) \ |
| ((tup)->t_infomask2 & HEAP_NATTS_MASK) |
|
|
| #define HeapTupleHeaderSetNatts(tup, natts) \ |
| ( \ |
| (tup)->t_infomask2 = ((tup)->t_infomask2 & ~HEAP_NATTS_MASK) | (natts) \ |
| ) |
|
|
| #define HeapTupleHeaderHasExternal(tup) \ |
| (((tup)->t_infomask & HEAP_HASEXTERNAL) != 0) |
|
|
|
|
| |
| |
| |
| |
| #define BITMAPLEN(NATTS) (((int)(NATTS) + 7) / 8) |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define MaxHeapTupleSize (BLCKSZ - MAXALIGN(SizeOfPageHeaderData + sizeof(ItemIdData))) |
| #define MinHeapTupleSize MAXALIGN(SizeofHeapTupleHeader) |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define MaxHeapTuplesPerPage \ |
| ((int) ((BLCKSZ - SizeOfPageHeaderData) / \ |
| (MAXALIGN(SizeofHeapTupleHeader) + sizeof(ItemIdData)))) |
|
|
| |
| |
| |
| |
| |
| |
| |
| #define MaxAttrSize (10 * 1024 * 1024) |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define MINIMAL_TUPLE_OFFSET \ |
| ((offsetof(HeapTupleHeaderData, t_infomask2) - sizeof(uint32)) / MAXIMUM_ALIGNOF * MAXIMUM_ALIGNOF) |
| #define MINIMAL_TUPLE_PADDING \ |
| ((offsetof(HeapTupleHeaderData, t_infomask2) - sizeof(uint32)) % MAXIMUM_ALIGNOF) |
| #define MINIMAL_TUPLE_DATA_OFFSET \ |
| offsetof(MinimalTupleData, t_infomask2) |
|
|
| struct MinimalTupleData |
| { |
| uint32 t_len; |
|
|
| char mt_padding[MINIMAL_TUPLE_PADDING]; |
|
|
| |
|
|
| uint16 t_infomask2; |
|
|
| uint16 t_infomask; |
|
|
| uint8 t_hoff; |
|
|
| |
|
|
| bits8 t_bits[FLEXIBLE_ARRAY_MEMBER]; |
|
|
| |
| }; |
|
|
| |
|
|
| #define SizeofMinimalTupleHeader offsetof(MinimalTupleData, t_bits) |
|
|
|
|
| |
| |
| |
| #define GETSTRUCT(TUP) ((char *) ((TUP)->t_data) + (TUP)->t_data->t_hoff) |
|
|
| |
| |
| |
|
|
| #define HeapTupleHasNulls(tuple) \ |
| (((tuple)->t_data->t_infomask & HEAP_HASNULL) != 0) |
|
|
| #define HeapTupleNoNulls(tuple) \ |
| (!((tuple)->t_data->t_infomask & HEAP_HASNULL)) |
|
|
| #define HeapTupleHasVarWidth(tuple) \ |
| (((tuple)->t_data->t_infomask & HEAP_HASVARWIDTH) != 0) |
|
|
| #define HeapTupleAllFixed(tuple) \ |
| (!((tuple)->t_data->t_infomask & HEAP_HASVARWIDTH)) |
|
|
| #define HeapTupleHasExternal(tuple) \ |
| (((tuple)->t_data->t_infomask & HEAP_HASEXTERNAL) != 0) |
|
|
| #define HeapTupleIsHotUpdated(tuple) \ |
| HeapTupleHeaderIsHotUpdated((tuple)->t_data) |
|
|
| #define HeapTupleSetHotUpdated(tuple) \ |
| HeapTupleHeaderSetHotUpdated((tuple)->t_data) |
|
|
| #define HeapTupleClearHotUpdated(tuple) \ |
| HeapTupleHeaderClearHotUpdated((tuple)->t_data) |
|
|
| #define HeapTupleIsHeapOnly(tuple) \ |
| HeapTupleHeaderIsHeapOnly((tuple)->t_data) |
|
|
| #define HeapTupleSetHeapOnly(tuple) \ |
| HeapTupleHeaderSetHeapOnly((tuple)->t_data) |
|
|
| #define HeapTupleClearHeapOnly(tuple) \ |
| HeapTupleHeaderClearHeapOnly((tuple)->t_data) |
|
|
| |
| extern Size heap_compute_data_size(TupleDesc tupleDesc, |
| Datum *values, bool *isnull); |
| extern void heap_fill_tuple(TupleDesc tupleDesc, |
| Datum *values, bool *isnull, |
| char *data, Size data_size, |
| uint16 *infomask, bits8 *bit); |
| extern bool heap_attisnull(HeapTuple tup, int attnum, TupleDesc tupleDesc); |
| extern Datum nocachegetattr(HeapTuple tup, int attnum, |
| TupleDesc tupleDesc); |
| extern Datum heap_getsysattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, |
| bool *isnull); |
| extern Datum getmissingattr(TupleDesc tupleDesc, |
| int attnum, bool *isnull); |
| extern HeapTuple heap_copytuple(HeapTuple tuple); |
| extern void heap_copytuple_with_tuple(HeapTuple src, HeapTuple dest); |
| extern Datum heap_copy_tuple_as_datum(HeapTuple tuple, TupleDesc tupleDesc); |
| extern HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, |
| Datum *values, bool *isnull); |
| extern HeapTuple heap_modify_tuple(HeapTuple tuple, |
| TupleDesc tupleDesc, |
| Datum *replValues, |
| bool *replIsnull, |
| bool *doReplace); |
| extern HeapTuple heap_modify_tuple_by_cols(HeapTuple tuple, |
| TupleDesc tupleDesc, |
| int nCols, |
| int *replCols, |
| Datum *replValues, |
| bool *replIsnull); |
| extern void heap_deform_tuple(HeapTuple tuple, TupleDesc tupleDesc, |
| Datum *values, bool *isnull); |
| extern void heap_freetuple(HeapTuple htup); |
| extern MinimalTuple heap_form_minimal_tuple(TupleDesc tupleDescriptor, |
| Datum *values, bool *isnull); |
| extern void heap_free_minimal_tuple(MinimalTuple mtup); |
| extern MinimalTuple heap_copy_minimal_tuple(MinimalTuple mtup); |
| extern HeapTuple heap_tuple_from_minimal_tuple(MinimalTuple mtup); |
| extern MinimalTuple minimal_tuple_from_heap_tuple(HeapTuple htup); |
| extern size_t varsize_any(void *p); |
| extern HeapTuple heap_expand_tuple(HeapTuple sourceTuple, TupleDesc tupleDesc); |
| extern MinimalTuple minimal_expand_tuple(HeapTuple sourceTuple, TupleDesc tupleDesc); |
|
|
| #ifndef FRONTEND |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| static inline Datum |
| fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull) |
| { |
| Assert(attnum > 0); |
|
|
| *isnull = false; |
| if (HeapTupleNoNulls(tup)) |
| { |
| Form_pg_attribute att; |
|
|
| att = TupleDescAttr(tupleDesc, attnum - 1); |
| if (att->attcacheoff >= 0) |
| return fetchatt(att, (char *) tup->t_data + tup->t_data->t_hoff + |
| att->attcacheoff); |
| else |
| return nocachegetattr(tup, attnum, tupleDesc); |
| } |
| else |
| { |
| if (att_isnull(attnum - 1, tup->t_data->t_bits)) |
| { |
| *isnull = true; |
| return (Datum) NULL; |
| } |
| else |
| return nocachegetattr(tup, attnum, tupleDesc); |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| static inline Datum |
| heap_getattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull) |
| { |
| if (attnum > 0) |
| { |
| if (attnum > (int) HeapTupleHeaderGetNatts(tup->t_data)) |
| return getmissingattr(tupleDesc, attnum, isnull); |
| else |
| return fastgetattr(tup, attnum, tupleDesc, isnull); |
| } |
| else |
| return heap_getsysattr(tup, attnum, tupleDesc, isnull); |
| } |
| #endif |
|
|
| #endif |
|
|