PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
heapam.c File Reference
#include "postgres.h"
#include "access/heapam.h"
#include "access/heaptoast.h"
#include "access/hio.h"
#include "access/multixact.h"
#include "access/subtrans.h"
#include "access/syncscan.h"
#include "access/valid.h"
#include "access/visibilitymap.h"
#include "access/xloginsert.h"
#include "catalog/pg_database.h"
#include "catalog/pg_database_d.h"
#include "commands/vacuum.h"
#include "pgstat.h"
#include "port/pg_bitutils.h"
#include "storage/lmgr.h"
#include "storage/predicate.h"
#include "storage/procarray.h"
#include "utils/datum.h"
#include "utils/injection_point.h"
#include "utils/inval.h"
#include "utils/spccache.h"
#include "utils/syscache.h"
Include dependency graph for heapam.c:

Go to the source code of this file.

Data Structures

struct  IndexDeleteCounts
 

Macros

#define LOCKMODE_from_mxstatus(status)    (tupleLockExtraInfo[TUPLOCK_from_mxstatus((status))].hwlock)
 
#define LockTupleTuplock(rel, tup, mode)    LockTuple((rel), (tup), tupleLockExtraInfo[mode].hwlock)
 
#define UnlockTupleTuplock(rel, tup, mode)    UnlockTuple((rel), (tup), tupleLockExtraInfo[mode].hwlock)
 
#define ConditionalLockTupleTuplock(rel, tup, mode, log)    ConditionalLockTuple((rel), (tup), tupleLockExtraInfo[mode].hwlock, (log))
 
#define BOTTOMUP_MAX_NBLOCKS   6
 
#define BOTTOMUP_TOLERANCE_NBLOCKS   3
 
#define TUPLOCK_from_mxstatus(status)    (MultiXactStatusLock[(status)])
 
#define FRM_NOOP   0x0001
 
#define FRM_INVALIDATE_XMAX   0x0002
 
#define FRM_RETURN_IS_XID   0x0004
 
#define FRM_RETURN_IS_MULTI   0x0008
 
#define FRM_MARK_COMMITTED   0x0010
 

Typedefs

typedef struct IndexDeleteCounts IndexDeleteCounts
 

Functions

static HeapTuple heap_prepare_insert (Relation relation, HeapTuple tup, TransactionId xid, CommandId cid, int options)
 
static XLogRecPtr log_heap_update (Relation reln, Buffer oldbuf, Buffer newbuf, HeapTuple oldtup, HeapTuple newtup, HeapTuple old_key_tuple, bool all_visible_cleared, bool new_all_visible_cleared)
 
static BitmapsetHeapDetermineColumnsInfo (Relation relation, Bitmapset *interesting_cols, Bitmapset *external_cols, HeapTuple oldtup, HeapTuple newtup, bool *has_external)
 
static bool heap_acquire_tuplock (Relation relation, ItemPointer tid, LockTupleMode mode, LockWaitPolicy wait_policy, bool *have_tuple_lock)
 
static BlockNumber heapgettup_advance_block (HeapScanDesc scan, BlockNumber block, ScanDirection dir)
 
static pg_noinline BlockNumber heapgettup_initial_block (HeapScanDesc scan, ScanDirection dir)
 
static void compute_new_xmax_infomask (TransactionId xmax, uint16 old_infomask, uint16 old_infomask2, TransactionId add_to_xmax, LockTupleMode mode, bool is_update, TransactionId *result_xmax, uint16 *result_infomask, uint16 *result_infomask2)
 
static TM_Result heap_lock_updated_tuple (Relation rel, HeapTuple tuple, ItemPointer ctid, TransactionId xid, LockTupleMode mode)
 
static void GetMultiXactIdHintBits (MultiXactId multi, uint16 *new_infomask, uint16 *new_infomask2)
 
static TransactionId MultiXactIdGetUpdateXid (TransactionId xmax, uint16 t_infomask)
 
static bool DoesMultiXactIdConflict (MultiXactId multi, uint16 infomask, LockTupleMode lockmode, bool *current_is_member)
 
static void MultiXactIdWait (MultiXactId multi, MultiXactStatus status, uint16 infomask, Relation rel, ItemPointer ctid, XLTW_Oper oper, int *remaining)
 
static bool ConditionalMultiXactIdWait (MultiXactId multi, MultiXactStatus status, uint16 infomask, Relation rel, int *remaining, bool logLockFailure)
 
static void index_delete_sort (TM_IndexDeleteOp *delstate)
 
static int bottomup_sort_and_shrink (TM_IndexDeleteOp *delstate)
 
static XLogRecPtr log_heap_new_cid (Relation relation, HeapTuple tup)
 
static HeapTuple ExtractReplicaIdentity (Relation relation, HeapTuple tp, bool key_required, bool *copy)
 
static void AssertHasSnapshotForToast (Relation rel)
 
static BlockNumber heap_scan_stream_read_next_parallel (ReadStream *stream, void *callback_private_data, void *per_buffer_data)
 
static BlockNumber heap_scan_stream_read_next_serial (ReadStream *stream, void *callback_private_data, void *per_buffer_data)
 
static BlockNumber bitmapheap_stream_read_next (ReadStream *pgsr, void *private_data, void *per_buffer_data)
 
static void initscan (HeapScanDesc scan, ScanKey key, bool keep_startblock)
 
void heap_setscanlimits (TableScanDesc sscan, BlockNumber startBlk, BlockNumber numBlks)
 
static pg_attribute_always_inline int page_collect_tuples (HeapScanDesc scan, Snapshot snapshot, Page page, Buffer buffer, BlockNumber block, int lines, bool all_visible, bool check_serializable)
 
void heap_prepare_pagescan (TableScanDesc sscan)
 
static void heap_fetch_next_buffer (HeapScanDesc scan, ScanDirection dir)
 
static Page heapgettup_start_page (HeapScanDesc scan, ScanDirection dir, int *linesleft, OffsetNumber *lineoff)
 
static Page heapgettup_continue_page (HeapScanDesc scan, ScanDirection dir, int *linesleft, OffsetNumber *lineoff)
 
static void heapgettup (HeapScanDesc scan, ScanDirection dir, int nkeys, ScanKey key)
 
static void heapgettup_pagemode (HeapScanDesc scan, ScanDirection dir, int nkeys, ScanKey key)
 
TableScanDesc heap_beginscan (Relation relation, Snapshot snapshot, int nkeys, ScanKey key, ParallelTableScanDesc parallel_scan, uint32 flags)
 
void heap_rescan (TableScanDesc sscan, ScanKey key, bool set_params, bool allow_strat, bool allow_sync, bool allow_pagemode)
 
void heap_endscan (TableScanDesc sscan)
 
HeapTuple heap_getnext (TableScanDesc sscan, ScanDirection direction)
 
bool heap_getnextslot (TableScanDesc sscan, ScanDirection direction, TupleTableSlot *slot)
 
void heap_set_tidrange (TableScanDesc sscan, ItemPointer mintid, ItemPointer maxtid)
 
bool heap_getnextslot_tidrange (TableScanDesc sscan, ScanDirection direction, TupleTableSlot *slot)
 
bool heap_fetch (Relation relation, Snapshot snapshot, HeapTuple tuple, Buffer *userbuf, bool keep_buf)
 
bool heap_hot_search_buffer (ItemPointer tid, Relation relation, Buffer buffer, Snapshot snapshot, HeapTuple heapTuple, bool *all_dead, bool first_call)
 
void heap_get_latest_tid (TableScanDesc sscan, ItemPointer tid)
 
static void UpdateXmaxHintBits (HeapTupleHeader tuple, Buffer buffer, TransactionId xid)
 
BulkInsertState GetBulkInsertState (void)
 
void FreeBulkInsertState (BulkInsertState bistate)
 
void ReleaseBulkInsertStatePin (BulkInsertState bistate)
 
void heap_insert (Relation relation, HeapTuple tup, CommandId cid, int options, BulkInsertState bistate)
 
static int heap_multi_insert_pages (HeapTuple *heaptuples, int done, int ntuples, Size saveFreeSpace)
 
void heap_multi_insert (Relation relation, TupleTableSlot **slots, int ntuples, CommandId cid, int options, BulkInsertState bistate)
 
void simple_heap_insert (Relation relation, HeapTuple tup)
 
static uint8 compute_infobits (uint16 infomask, uint16 infomask2)
 
static bool xmax_infomask_changed (uint16 new_infomask, uint16 old_infomask)
 
TM_Result heap_delete (Relation relation, ItemPointer tid, CommandId cid, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, bool changingPart)
 
void simple_heap_delete (Relation relation, ItemPointer tid)
 
TM_Result heap_update (Relation relation, ItemPointer otid, HeapTuple newtup, CommandId cid, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, LockTupleMode *lockmode, TU_UpdateIndexes *update_indexes)
 
static bool heap_attr_equals (TupleDesc tupdesc, int attrnum, Datum value1, Datum value2, bool isnull1, bool isnull2)
 
void simple_heap_update (Relation relation, ItemPointer otid, HeapTuple tup, TU_UpdateIndexes *update_indexes)
 
static MultiXactStatus get_mxact_status_for_lock (LockTupleMode mode, bool is_update)
 
TM_Result heap_lock_tuple (Relation relation, HeapTuple tuple, CommandId cid, LockTupleMode mode, LockWaitPolicy wait_policy, bool follow_updates, Buffer *buffer, TM_FailureData *tmfd)
 
static TM_Result test_lockmode_for_conflict (MultiXactStatus status, TransactionId xid, LockTupleMode mode, HeapTuple tup, bool *needwait)
 
static TM_Result heap_lock_updated_tuple_rec (Relation rel, ItemPointer tid, TransactionId xid, LockTupleMode mode)
 
void heap_finish_speculative (Relation relation, ItemPointer tid)
 
void heap_abort_speculative (Relation relation, ItemPointer tid)
 
bool heap_inplace_lock (Relation relation, HeapTuple oldtup_ptr, Buffer buffer, void(*release_callback)(void *), void *arg)
 
void heap_inplace_update_and_unlock (Relation relation, HeapTuple oldtup, HeapTuple tuple, Buffer buffer)
 
void heap_inplace_unlock (Relation relation, HeapTuple oldtup, Buffer buffer)
 
static TransactionId FreezeMultiXactId (MultiXactId multi, uint16 t_infomask, const struct VacuumCutoffs *cutoffs, uint16 *flags, HeapPageFreeze *pagefrz)
 
bool heap_prepare_freeze_tuple (HeapTupleHeader tuple, const struct VacuumCutoffs *cutoffs, HeapPageFreeze *pagefrz, HeapTupleFreeze *frz, bool *totally_frozen)
 
void heap_pre_freeze_checks (Buffer buffer, HeapTupleFreeze *tuples, int ntuples)
 
void heap_freeze_prepared_tuples (Buffer buffer, HeapTupleFreeze *tuples, int ntuples)
 
bool heap_freeze_tuple (HeapTupleHeader tuple, TransactionId relfrozenxid, TransactionId relminmxid, TransactionId FreezeLimit, TransactionId MultiXactCutoff)
 
TransactionId HeapTupleGetUpdateXid (const HeapTupleHeaderData *tup)
 
static bool Do_MultiXactIdWait (MultiXactId multi, MultiXactStatus status, uint16 infomask, bool nowait, Relation rel, ItemPointer ctid, XLTW_Oper oper, int *remaining, bool logLockFailure)
 
bool heap_tuple_needs_eventual_freeze (HeapTupleHeader tuple)
 
bool heap_tuple_should_freeze (HeapTupleHeader tuple, const struct VacuumCutoffs *cutoffs, TransactionId *NoFreezePageRelfrozenXid, MultiXactId *NoFreezePageRelminMxid)
 
void HeapTupleHeaderAdvanceConflictHorizon (HeapTupleHeader tuple, TransactionId *snapshotConflictHorizon)
 
static void index_delete_check_htid (TM_IndexDeleteOp *delstate, Page page, OffsetNumber maxoff, ItemPointer htid, TM_IndexStatus *istatus)
 
TransactionId heap_index_delete_tuples (Relation rel, TM_IndexDeleteOp *delstate)
 
static int index_delete_sort_cmp (TM_IndexDelete *deltid1, TM_IndexDelete *deltid2)
 
static int bottomup_nblocksfavorable (IndexDeleteCounts *blockgroups, int nblockgroups, TM_IndexDelete *deltids)
 
static int bottomup_sort_and_shrink_cmp (const void *arg1, const void *arg2)
 
XLogRecPtr log_heap_visible (Relation rel, Buffer heap_buffer, Buffer vm_buffer, TransactionId snapshotConflictHorizon, uint8 vmflags)
 
void HeapCheckForSerializableConflictOut (bool visible, Relation relation, HeapTuple tuple, Buffer buffer, Snapshot snapshot)
 

Variables

struct {
   LOCKMODE   hwlock
 
   int   lockstatus
 
   int   updstatus
 
tupleLockExtraInfo [MaxLockTupleMode+1]
 
static const int MultiXactStatusLock [MaxMultiXactStatus+1]
 

Macro Definition Documentation

◆ BOTTOMUP_MAX_NBLOCKS

#define BOTTOMUP_MAX_NBLOCKS   6

Definition at line 184 of file heapam.c.

◆ BOTTOMUP_TOLERANCE_NBLOCKS

#define BOTTOMUP_TOLERANCE_NBLOCKS   3

Definition at line 185 of file heapam.c.

◆ ConditionalLockTupleTuplock

#define ConditionalLockTupleTuplock (   rel,
  tup,
  mode,
  log 
)     ConditionalLockTuple((rel), (tup), tupleLockExtraInfo[mode].hwlock, (log))

Definition at line 166 of file heapam.c.

◆ FRM_INVALIDATE_XMAX

#define FRM_INVALIDATE_XMAX   0x0002

Definition at line 6652 of file heapam.c.

◆ FRM_MARK_COMMITTED

#define FRM_MARK_COMMITTED   0x0010

Definition at line 6655 of file heapam.c.

◆ FRM_NOOP

#define FRM_NOOP   0x0001

Definition at line 6651 of file heapam.c.

◆ FRM_RETURN_IS_MULTI

#define FRM_RETURN_IS_MULTI   0x0008

Definition at line 6654 of file heapam.c.

◆ FRM_RETURN_IS_XID

#define FRM_RETURN_IS_XID   0x0004

Definition at line 6653 of file heapam.c.

◆ LOCKMODE_from_mxstatus

#define LOCKMODE_from_mxstatus (   status)     (tupleLockExtraInfo[TUPLOCK_from_mxstatus((status))].hwlock)

Definition at line 154 of file heapam.c.

◆ LockTupleTuplock

#define LockTupleTuplock (   rel,
  tup,
  mode 
)     LockTuple((rel), (tup), tupleLockExtraInfo[mode].hwlock)

Definition at line 162 of file heapam.c.

◆ TUPLOCK_from_mxstatus

#define TUPLOCK_from_mxstatus (   status)     (MultiXactStatusLock[(status)])

Definition at line 213 of file heapam.c.

◆ UnlockTupleTuplock

#define UnlockTupleTuplock (   rel,
  tup,
  mode 
)     UnlockTuple((rel), (tup), tupleLockExtraInfo[mode].hwlock)

Definition at line 164 of file heapam.c.

Typedef Documentation

◆ IndexDeleteCounts

Function Documentation

◆ AssertHasSnapshotForToast()

static void AssertHasSnapshotForToast ( Relation  rel)
inlinestatic

Definition at line 220 of file heapam.c.

221{
222#ifdef USE_ASSERT_CHECKING
223
224 /* bootstrap mode in particular breaks this rule */
226 return;
227
228 /* if the relation doesn't have a TOAST table, we are good */
229 if (!OidIsValid(rel->rd_rel->reltoastrelid))
230 return;
231
233
234#endif /* USE_ASSERT_CHECKING */
235}
#define OidIsValid(objectId)
Definition: c.h:774
Assert(PointerIsAligned(start, uint64))
#define IsNormalProcessingMode()
Definition: miscadmin.h:478
bool HaveRegisteredOrActiveSnapshot(void)
Definition: snapmgr.c:1642
Form_pg_class rd_rel
Definition: rel.h:111

References Assert(), HaveRegisteredOrActiveSnapshot(), IsNormalProcessingMode, OidIsValid, and RelationData::rd_rel.

Referenced by heap_delete(), heap_insert(), heap_multi_insert(), and heap_update().

◆ bitmapheap_stream_read_next()

static BlockNumber bitmapheap_stream_read_next ( ReadStream pgsr,
void *  private_data,
void *  per_buffer_data 
)
static

Definition at line 310 of file heapam.c.

312{
313 TBMIterateResult *tbmres = per_buffer_data;
314 BitmapHeapScanDesc bscan = (BitmapHeapScanDesc) private_data;
315 HeapScanDesc hscan = (HeapScanDesc) bscan;
316 TableScanDesc sscan = &hscan->rs_base;
317
318 for (;;)
319 {
321
322 /* no more entries in the bitmap */
323 if (!tbm_iterate(&sscan->st.rs_tbmiterator, tbmres))
324 return InvalidBlockNumber;
325
326 /*
327 * Ignore any claimed entries past what we think is the end of the
328 * relation. It may have been extended after the start of our scan (we
329 * only hold an AccessShareLock, and it could be inserts from this
330 * backend). We don't take this optimization in SERIALIZABLE
331 * isolation though, as we need to examine all invisible tuples
332 * reachable by the index.
333 */
335 tbmres->blockno >= hscan->rs_nblocks)
336 continue;
337
338 return tbmres->blockno;
339 }
340
341 /* not reachable */
342 Assert(false);
343}
#define InvalidBlockNumber
Definition: block.h:33
struct HeapScanDescData * HeapScanDesc
Definition: heapam.h:102
struct BitmapHeapScanDescData * BitmapHeapScanDesc
Definition: heapam.h:110
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:122
BlockNumber rs_nblocks
Definition: heapam.h:61
TableScanDescData rs_base
Definition: heapam.h:58
BlockNumber blockno
Definition: tidbitmap.h:63
TBMIterator rs_tbmiterator
Definition: relscan.h:47
union TableScanDescData::@50 st
bool tbm_iterate(TBMIterator *iterator, TBMIterateResult *tbmres)
Definition: tidbitmap.c:1618
#define IsolationIsSerializable()
Definition: xact.h:53

References Assert(), TBMIterateResult::blockno, CHECK_FOR_INTERRUPTS, InvalidBlockNumber, IsolationIsSerializable, HeapScanDescData::rs_base, HeapScanDescData::rs_nblocks, TableScanDescData::rs_tbmiterator, TableScanDescData::st, and tbm_iterate().

Referenced by heap_beginscan().

◆ bottomup_nblocksfavorable()

static int bottomup_nblocksfavorable ( IndexDeleteCounts blockgroups,
int  nblockgroups,
TM_IndexDelete deltids 
)
static

Definition at line 8559 of file heapam.c.

8561{
8562 int64 lastblock = -1;
8563 int nblocksfavorable = 0;
8564
8565 Assert(nblockgroups >= 1);
8566 Assert(nblockgroups <= BOTTOMUP_MAX_NBLOCKS);
8567
8568 /*
8569 * We tolerate heap blocks that will be accessed only slightly out of
8570 * physical order. Small blips occur when a pair of almost-contiguous
8571 * blocks happen to fall into different buckets (perhaps due only to a
8572 * small difference in npromisingtids that the bucketing scheme didn't
8573 * quite manage to ignore). We effectively ignore these blips by applying
8574 * a small tolerance. The precise tolerance we use is a little arbitrary,
8575 * but it works well enough in practice.
8576 */
8577 for (int b = 0; b < nblockgroups; b++)
8578 {
8579 IndexDeleteCounts *group = blockgroups + b;
8580 TM_IndexDelete *firstdtid = deltids + group->ifirsttid;
8581 BlockNumber block = ItemPointerGetBlockNumber(&firstdtid->tid);
8582
8583 if (lastblock != -1 &&
8584 ((int64) block < lastblock - BOTTOMUP_TOLERANCE_NBLOCKS ||
8585 (int64) block > lastblock + BOTTOMUP_TOLERANCE_NBLOCKS))
8586 break;
8587
8588 nblocksfavorable++;
8589 lastblock = block;
8590 }
8591
8592 /* Always indicate that there is at least 1 favorable block */
8593 Assert(nblocksfavorable >= 1);
8594
8595 return nblocksfavorable;
8596}
uint32 BlockNumber
Definition: block.h:31
int64_t int64
Definition: c.h:535
#define BOTTOMUP_TOLERANCE_NBLOCKS
Definition: heapam.c:185
#define BOTTOMUP_MAX_NBLOCKS
Definition: heapam.c:184
int b
Definition: isn.c:74
static BlockNumber ItemPointerGetBlockNumber(const ItemPointerData *pointer)
Definition: itemptr.h:103
int16 ifirsttid
Definition: heapam.c:195
ItemPointerData tid
Definition: tableam.h:212

References Assert(), b, BOTTOMUP_MAX_NBLOCKS, BOTTOMUP_TOLERANCE_NBLOCKS, IndexDeleteCounts::ifirsttid, ItemPointerGetBlockNumber(), and TM_IndexDelete::tid.

Referenced by bottomup_sort_and_shrink().

◆ bottomup_sort_and_shrink()

static int bottomup_sort_and_shrink ( TM_IndexDeleteOp delstate)
static

Definition at line 8675 of file heapam.c.

8676{
8677 IndexDeleteCounts *blockgroups;
8678 TM_IndexDelete *reordereddeltids;
8680 int nblockgroups = 0;
8681 int ncopied = 0;
8682 int nblocksfavorable = 0;
8683
8684 Assert(delstate->bottomup);
8685 Assert(delstate->ndeltids > 0);
8686
8687 /* Calculate per-heap-block count of TIDs */
8688 blockgroups = palloc(sizeof(IndexDeleteCounts) * delstate->ndeltids);
8689 for (int i = 0; i < delstate->ndeltids; i++)
8690 {
8691 TM_IndexDelete *ideltid = &delstate->deltids[i];
8692 TM_IndexStatus *istatus = delstate->status + ideltid->id;
8693 ItemPointer htid = &ideltid->tid;
8694 bool promising = istatus->promising;
8695
8696 if (curblock != ItemPointerGetBlockNumber(htid))
8697 {
8698 /* New block group */
8699 nblockgroups++;
8700
8701 Assert(curblock < ItemPointerGetBlockNumber(htid) ||
8702 !BlockNumberIsValid(curblock));
8703
8704 curblock = ItemPointerGetBlockNumber(htid);
8705 blockgroups[nblockgroups - 1].ifirsttid = i;
8706 blockgroups[nblockgroups - 1].ntids = 1;
8707 blockgroups[nblockgroups - 1].npromisingtids = 0;
8708 }
8709 else
8710 {
8711 blockgroups[nblockgroups - 1].ntids++;
8712 }
8713
8714 if (promising)
8715 blockgroups[nblockgroups - 1].npromisingtids++;
8716 }
8717
8718 /*
8719 * We're about ready to sort block groups to determine the optimal order
8720 * for visiting heap blocks. But before we do, round the number of
8721 * promising tuples for each block group up to the next power-of-two,
8722 * unless it is very low (less than 4), in which case we round up to 4.
8723 * npromisingtids is far too noisy to trust when choosing between a pair
8724 * of block groups that both have very low values.
8725 *
8726 * This scheme divides heap blocks/block groups into buckets. Each bucket
8727 * contains blocks that have _approximately_ the same number of promising
8728 * TIDs as each other. The goal is to ignore relatively small differences
8729 * in the total number of promising entries, so that the whole process can
8730 * give a little weight to heapam factors (like heap block locality)
8731 * instead. This isn't a trade-off, really -- we have nothing to lose. It
8732 * would be foolish to interpret small differences in npromisingtids
8733 * values as anything more than noise.
8734 *
8735 * We tiebreak on nhtids when sorting block group subsets that have the
8736 * same npromisingtids, but this has the same issues as npromisingtids,
8737 * and so nhtids is subject to the same power-of-two bucketing scheme. The
8738 * only reason that we don't fix nhtids in the same way here too is that
8739 * we'll need accurate nhtids values after the sort. We handle nhtids
8740 * bucketization dynamically instead (in the sort comparator).
8741 *
8742 * See bottomup_nblocksfavorable() for a full explanation of when and how
8743 * heap locality/favorable blocks can significantly influence when and how
8744 * heap blocks are accessed.
8745 */
8746 for (int b = 0; b < nblockgroups; b++)
8747 {
8748 IndexDeleteCounts *group = blockgroups + b;
8749
8750 /* Better off falling back on nhtids with low npromisingtids */
8751 if (group->npromisingtids <= 4)
8752 group->npromisingtids = 4;
8753 else
8754 group->npromisingtids =
8756 }
8757
8758 /* Sort groups and rearrange caller's deltids array */
8759 qsort(blockgroups, nblockgroups, sizeof(IndexDeleteCounts),
8761 reordereddeltids = palloc(delstate->ndeltids * sizeof(TM_IndexDelete));
8762
8763 nblockgroups = Min(BOTTOMUP_MAX_NBLOCKS, nblockgroups);
8764 /* Determine number of favorable blocks at the start of final deltids */
8765 nblocksfavorable = bottomup_nblocksfavorable(blockgroups, nblockgroups,
8766 delstate->deltids);
8767
8768 for (int b = 0; b < nblockgroups; b++)
8769 {
8770 IndexDeleteCounts *group = blockgroups + b;
8771 TM_IndexDelete *firstdtid = delstate->deltids + group->ifirsttid;
8772
8773 memcpy(reordereddeltids + ncopied, firstdtid,
8774 sizeof(TM_IndexDelete) * group->ntids);
8775 ncopied += group->ntids;
8776 }
8777
8778 /* Copy final grouped and sorted TIDs back into start of caller's array */
8779 memcpy(delstate->deltids, reordereddeltids,
8780 sizeof(TM_IndexDelete) * ncopied);
8781 delstate->ndeltids = ncopied;
8782
8783 pfree(reordereddeltids);
8784 pfree(blockgroups);
8785
8786 return nblocksfavorable;
8787}
static bool BlockNumberIsValid(BlockNumber blockNumber)
Definition: block.h:71
#define Min(x, y)
Definition: c.h:1003
uint32_t uint32
Definition: c.h:538
static int bottomup_nblocksfavorable(IndexDeleteCounts *blockgroups, int nblockgroups, TM_IndexDelete *deltids)
Definition: heapam.c:8559
static int bottomup_sort_and_shrink_cmp(const void *arg1, const void *arg2)
Definition: heapam.c:8602
int i
Definition: isn.c:77
void pfree(void *pointer)
Definition: mcxt.c:1594
void * palloc(Size size)
Definition: mcxt.c:1365
static uint32 pg_nextpower2_32(uint32 num)
Definition: pg_bitutils.h:189
#define qsort(a, b, c, d)
Definition: port.h:479
int16 npromisingtids
Definition: heapam.c:193
TM_IndexStatus * status
Definition: tableam.h:254
TM_IndexDelete * deltids
Definition: tableam.h:253
bool promising
Definition: tableam.h:222

References Assert(), b, BlockNumberIsValid(), TM_IndexDeleteOp::bottomup, BOTTOMUP_MAX_NBLOCKS, bottomup_nblocksfavorable(), bottomup_sort_and_shrink_cmp(), TM_IndexDeleteOp::deltids, i, TM_IndexDelete::id, IndexDeleteCounts::ifirsttid, InvalidBlockNumber, ItemPointerGetBlockNumber(), Min, TM_IndexDeleteOp::ndeltids, IndexDeleteCounts::npromisingtids, IndexDeleteCounts::ntids, palloc(), pfree(), pg_nextpower2_32(), TM_IndexStatus::promising, qsort, TM_IndexDeleteOp::status, and TM_IndexDelete::tid.

Referenced by heap_index_delete_tuples().

◆ bottomup_sort_and_shrink_cmp()

static int bottomup_sort_and_shrink_cmp ( const void *  arg1,
const void *  arg2 
)
static

Definition at line 8602 of file heapam.c.

8603{
8604 const IndexDeleteCounts *group1 = (const IndexDeleteCounts *) arg1;
8605 const IndexDeleteCounts *group2 = (const IndexDeleteCounts *) arg2;
8606
8607 /*
8608 * Most significant field is npromisingtids (which we invert the order of
8609 * so as to sort in desc order).
8610 *
8611 * Caller should have already normalized npromisingtids fields into
8612 * power-of-two values (buckets).
8613 */
8614 if (group1->npromisingtids > group2->npromisingtids)
8615 return -1;
8616 if (group1->npromisingtids < group2->npromisingtids)
8617 return 1;
8618
8619 /*
8620 * Tiebreak: desc ntids sort order.
8621 *
8622 * We cannot expect power-of-two values for ntids fields. We should
8623 * behave as if they were already rounded up for us instead.
8624 */
8625 if (group1->ntids != group2->ntids)
8626 {
8627 uint32 ntids1 = pg_nextpower2_32((uint32) group1->ntids);
8628 uint32 ntids2 = pg_nextpower2_32((uint32) group2->ntids);
8629
8630 if (ntids1 > ntids2)
8631 return -1;
8632 if (ntids1 < ntids2)
8633 return 1;
8634 }
8635
8636 /*
8637 * Tiebreak: asc offset-into-deltids-for-block (offset to first TID for
8638 * block in deltids array) order.
8639 *
8640 * This is equivalent to sorting in ascending heap block number order
8641 * (among otherwise equal subsets of the array). This approach allows us
8642 * to avoid accessing the out-of-line TID. (We rely on the assumption
8643 * that the deltids array was sorted in ascending heap TID order when
8644 * these offsets to the first TID from each heap block group were formed.)
8645 */
8646 if (group1->ifirsttid > group2->ifirsttid)
8647 return 1;
8648 if (group1->ifirsttid < group2->ifirsttid)
8649 return -1;
8650
8652
8653 return 0;
8654}
#define pg_unreachable()
Definition: c.h:331

References IndexDeleteCounts::ifirsttid, IndexDeleteCounts::npromisingtids, IndexDeleteCounts::ntids, pg_nextpower2_32(), and pg_unreachable.

Referenced by bottomup_sort_and_shrink().

◆ compute_infobits()

static uint8 compute_infobits ( uint16  infomask,
uint16  infomask2 
)
static

Definition at line 2733 of file heapam.c.

2734{
2735 return
2736 ((infomask & HEAP_XMAX_IS_MULTI) != 0 ? XLHL_XMAX_IS_MULTI : 0) |
2737 ((infomask & HEAP_XMAX_LOCK_ONLY) != 0 ? XLHL_XMAX_LOCK_ONLY : 0) |
2738 ((infomask & HEAP_XMAX_EXCL_LOCK) != 0 ? XLHL_XMAX_EXCL_LOCK : 0) |
2739 /* note we ignore HEAP_XMAX_SHR_LOCK here */
2740 ((infomask & HEAP_XMAX_KEYSHR_LOCK) != 0 ? XLHL_XMAX_KEYSHR_LOCK : 0) |
2741 ((infomask2 & HEAP_KEYS_UPDATED) != 0 ?
2742 XLHL_KEYS_UPDATED : 0);
2743}
#define XLHL_XMAX_KEYSHR_LOCK
Definition: heapam_xlog.h:388
#define XLHL_XMAX_IS_MULTI
Definition: heapam_xlog.h:385
#define XLHL_XMAX_LOCK_ONLY
Definition: heapam_xlog.h:386
#define XLHL_XMAX_EXCL_LOCK
Definition: heapam_xlog.h:387
#define XLHL_KEYS_UPDATED
Definition: heapam_xlog.h:389
#define HEAP_KEYS_UPDATED
Definition: htup_details.h:289
#define HEAP_XMAX_LOCK_ONLY
Definition: htup_details.h:197
#define HEAP_XMAX_IS_MULTI
Definition: htup_details.h:209
#define HEAP_XMAX_EXCL_LOCK
Definition: htup_details.h:196
#define HEAP_XMAX_KEYSHR_LOCK
Definition: htup_details.h:194

References HEAP_KEYS_UPDATED, HEAP_XMAX_EXCL_LOCK, HEAP_XMAX_IS_MULTI, HEAP_XMAX_KEYSHR_LOCK, HEAP_XMAX_LOCK_ONLY, XLHL_KEYS_UPDATED, XLHL_XMAX_EXCL_LOCK, XLHL_XMAX_IS_MULTI, XLHL_XMAX_KEYSHR_LOCK, and XLHL_XMAX_LOCK_ONLY.

Referenced by heap_abort_speculative(), heap_delete(), heap_lock_tuple(), heap_lock_updated_tuple_rec(), heap_update(), and log_heap_update().

◆ compute_new_xmax_infomask()

static void compute_new_xmax_infomask ( TransactionId  xmax,
uint16  old_infomask,
uint16  old_infomask2,
TransactionId  add_to_xmax,
LockTupleMode  mode,
bool  is_update,
TransactionId result_xmax,
uint16 result_infomask,
uint16 result_infomask2 
)
static

Definition at line 5326 of file heapam.c.

5331{
5332 TransactionId new_xmax;
5333 uint16 new_infomask,
5334 new_infomask2;
5335
5337
5338l5:
5339 new_infomask = 0;
5340 new_infomask2 = 0;
5341 if (old_infomask & HEAP_XMAX_INVALID)
5342 {
5343 /*
5344 * No previous locker; we just insert our own TransactionId.
5345 *
5346 * Note that it's critical that this case be the first one checked,
5347 * because there are several blocks below that come back to this one
5348 * to implement certain optimizations; old_infomask might contain
5349 * other dirty bits in those cases, but we don't really care.
5350 */
5351 if (is_update)
5352 {
5353 new_xmax = add_to_xmax;
5354 if (mode == LockTupleExclusive)
5355 new_infomask2 |= HEAP_KEYS_UPDATED;
5356 }
5357 else
5358 {
5359 new_infomask |= HEAP_XMAX_LOCK_ONLY;
5360 switch (mode)
5361 {
5362 case LockTupleKeyShare:
5363 new_xmax = add_to_xmax;
5364 new_infomask |= HEAP_XMAX_KEYSHR_LOCK;
5365 break;
5366 case LockTupleShare:
5367 new_xmax = add_to_xmax;
5368 new_infomask |= HEAP_XMAX_SHR_LOCK;
5369 break;
5371 new_xmax = add_to_xmax;
5372 new_infomask |= HEAP_XMAX_EXCL_LOCK;
5373 break;
5374 case LockTupleExclusive:
5375 new_xmax = add_to_xmax;
5376 new_infomask |= HEAP_XMAX_EXCL_LOCK;
5377 new_infomask2 |= HEAP_KEYS_UPDATED;
5378 break;
5379 default:
5380 new_xmax = InvalidTransactionId; /* silence compiler */
5381 elog(ERROR, "invalid lock mode");
5382 }
5383 }
5384 }
5385 else if (old_infomask & HEAP_XMAX_IS_MULTI)
5386 {
5387 MultiXactStatus new_status;
5388
5389 /*
5390 * Currently we don't allow XMAX_COMMITTED to be set for multis, so
5391 * cross-check.
5392 */
5393 Assert(!(old_infomask & HEAP_XMAX_COMMITTED));
5394
5395 /*
5396 * A multixact together with LOCK_ONLY set but neither lock bit set
5397 * (i.e. a pg_upgraded share locked tuple) cannot possibly be running
5398 * anymore. This check is critical for databases upgraded by
5399 * pg_upgrade; both MultiXactIdIsRunning and MultiXactIdExpand assume
5400 * that such multis are never passed.
5401 */
5402 if (HEAP_LOCKED_UPGRADED(old_infomask))
5403 {
5404 old_infomask &= ~HEAP_XMAX_IS_MULTI;
5405 old_infomask |= HEAP_XMAX_INVALID;
5406 goto l5;
5407 }
5408
5409 /*
5410 * If the XMAX is already a MultiXactId, then we need to expand it to
5411 * include add_to_xmax; but if all the members were lockers and are
5412 * all gone, we can do away with the IS_MULTI bit and just set
5413 * add_to_xmax as the only locker/updater. If all lockers are gone
5414 * and we have an updater that aborted, we can also do without a
5415 * multi.
5416 *
5417 * The cost of doing GetMultiXactIdMembers would be paid by
5418 * MultiXactIdExpand if we weren't to do this, so this check is not
5419 * incurring extra work anyhow.
5420 */
5421 if (!MultiXactIdIsRunning(xmax, HEAP_XMAX_IS_LOCKED_ONLY(old_infomask)))
5422 {
5423 if (HEAP_XMAX_IS_LOCKED_ONLY(old_infomask) ||
5425 old_infomask)))
5426 {
5427 /*
5428 * Reset these bits and restart; otherwise fall through to
5429 * create a new multi below.
5430 */
5431 old_infomask &= ~HEAP_XMAX_IS_MULTI;
5432 old_infomask |= HEAP_XMAX_INVALID;
5433 goto l5;
5434 }
5435 }
5436
5437 new_status = get_mxact_status_for_lock(mode, is_update);
5438
5439 new_xmax = MultiXactIdExpand((MultiXactId) xmax, add_to_xmax,
5440 new_status);
5441 GetMultiXactIdHintBits(new_xmax, &new_infomask, &new_infomask2);
5442 }
5443 else if (old_infomask & HEAP_XMAX_COMMITTED)
5444 {
5445 /*
5446 * It's a committed update, so we need to preserve him as updater of
5447 * the tuple.
5448 */
5449 MultiXactStatus status;
5450 MultiXactStatus new_status;
5451
5452 if (old_infomask2 & HEAP_KEYS_UPDATED)
5453 status = MultiXactStatusUpdate;
5454 else
5456
5457 new_status = get_mxact_status_for_lock(mode, is_update);
5458
5459 /*
5460 * since it's not running, it's obviously impossible for the old
5461 * updater to be identical to the current one, so we need not check
5462 * for that case as we do in the block above.
5463 */
5464 new_xmax = MultiXactIdCreate(xmax, status, add_to_xmax, new_status);
5465 GetMultiXactIdHintBits(new_xmax, &new_infomask, &new_infomask2);
5466 }
5467 else if (TransactionIdIsInProgress(xmax))
5468 {
5469 /*
5470 * If the XMAX is a valid, in-progress TransactionId, then we need to
5471 * create a new MultiXactId that includes both the old locker or
5472 * updater and our own TransactionId.
5473 */
5474 MultiXactStatus new_status;
5475 MultiXactStatus old_status;
5476 LockTupleMode old_mode;
5477
5478 if (HEAP_XMAX_IS_LOCKED_ONLY(old_infomask))
5479 {
5480 if (HEAP_XMAX_IS_KEYSHR_LOCKED(old_infomask))
5481 old_status = MultiXactStatusForKeyShare;
5482 else if (HEAP_XMAX_IS_SHR_LOCKED(old_infomask))
5483 old_status = MultiXactStatusForShare;
5484 else if (HEAP_XMAX_IS_EXCL_LOCKED(old_infomask))
5485 {
5486 if (old_infomask2 & HEAP_KEYS_UPDATED)
5487 old_status = MultiXactStatusForUpdate;
5488 else
5489 old_status = MultiXactStatusForNoKeyUpdate;
5490 }
5491 else
5492 {
5493 /*
5494 * LOCK_ONLY can be present alone only when a page has been
5495 * upgraded by pg_upgrade. But in that case,
5496 * TransactionIdIsInProgress() should have returned false. We
5497 * assume it's no longer locked in this case.
5498 */
5499 elog(WARNING, "LOCK_ONLY found for Xid in progress %u", xmax);
5500 old_infomask |= HEAP_XMAX_INVALID;
5501 old_infomask &= ~HEAP_XMAX_LOCK_ONLY;
5502 goto l5;
5503 }
5504 }
5505 else
5506 {
5507 /* it's an update, but which kind? */
5508 if (old_infomask2 & HEAP_KEYS_UPDATED)
5509 old_status = MultiXactStatusUpdate;
5510 else
5511 old_status = MultiXactStatusNoKeyUpdate;
5512 }
5513
5514 old_mode = TUPLOCK_from_mxstatus(old_status);
5515
5516 /*
5517 * If the lock to be acquired is for the same TransactionId as the
5518 * existing lock, there's an optimization possible: consider only the
5519 * strongest of both locks as the only one present, and restart.
5520 */
5521 if (xmax == add_to_xmax)
5522 {
5523 /*
5524 * Note that it's not possible for the original tuple to be
5525 * updated: we wouldn't be here because the tuple would have been
5526 * invisible and we wouldn't try to update it. As a subtlety,
5527 * this code can also run when traversing an update chain to lock
5528 * future versions of a tuple. But we wouldn't be here either,
5529 * because the add_to_xmax would be different from the original
5530 * updater.
5531 */
5532 Assert(HEAP_XMAX_IS_LOCKED_ONLY(old_infomask));
5533
5534 /* acquire the strongest of both */
5535 if (mode < old_mode)
5536 mode = old_mode;
5537 /* mustn't touch is_update */
5538
5539 old_infomask |= HEAP_XMAX_INVALID;
5540 goto l5;
5541 }
5542
5543 /* otherwise, just fall back to creating a new multixact */
5544 new_status = get_mxact_status_for_lock(mode, is_update);
5545 new_xmax = MultiXactIdCreate(xmax, old_status,
5546 add_to_xmax, new_status);
5547 GetMultiXactIdHintBits(new_xmax, &new_infomask, &new_infomask2);
5548 }
5549 else if (!HEAP_XMAX_IS_LOCKED_ONLY(old_infomask) &&
5551 {
5552 /*
5553 * It's a committed update, so we gotta preserve him as updater of the
5554 * tuple.
5555 */
5556 MultiXactStatus status;
5557 MultiXactStatus new_status;
5558
5559 if (old_infomask2 & HEAP_KEYS_UPDATED)
5560 status = MultiXactStatusUpdate;
5561 else
5563
5564 new_status = get_mxact_status_for_lock(mode, is_update);
5565
5566 /*
5567 * since it's not running, it's obviously impossible for the old
5568 * updater to be identical to the current one, so we need not check
5569 * for that case as we do in the block above.
5570 */
5571 new_xmax = MultiXactIdCreate(xmax, status, add_to_xmax, new_status);
5572 GetMultiXactIdHintBits(new_xmax, &new_infomask, &new_infomask2);
5573 }
5574 else
5575 {
5576 /*
5577 * Can get here iff the locking/updating transaction was running when
5578 * the infomask was extracted from the tuple, but finished before
5579 * TransactionIdIsInProgress got to run. Deal with it as if there was
5580 * no locker at all in the first place.
5581 */
5582 old_infomask |= HEAP_XMAX_INVALID;
5583 goto l5;
5584 }
5585
5586 *result_infomask = new_infomask;
5587 *result_infomask2 = new_infomask2;
5588 *result_xmax = new_xmax;
5589}
TransactionId MultiXactId
Definition: c.h:667
uint16_t uint16
Definition: c.h:537
uint32 TransactionId
Definition: c.h:657
#define WARNING
Definition: elog.h:36
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:226
static void GetMultiXactIdHintBits(MultiXactId multi, uint16 *new_infomask, uint16 *new_infomask2)
Definition: heapam.c:7446
#define TUPLOCK_from_mxstatus(status)
Definition: heapam.c:213
static TransactionId MultiXactIdGetUpdateXid(TransactionId xmax, uint16 t_infomask)
Definition: heapam.c:7527
static MultiXactStatus get_mxact_status_for_lock(LockTupleMode mode, bool is_update)
Definition: heapam.c:4532
static bool HEAP_XMAX_IS_SHR_LOCKED(int16 infomask)
Definition: htup_details.h:263
#define HEAP_XMAX_SHR_LOCK
Definition: htup_details.h:200
static bool HEAP_XMAX_IS_LOCKED_ONLY(uint16 infomask)
Definition: htup_details.h:226
static bool HEAP_XMAX_IS_KEYSHR_LOCKED(int16 infomask)
Definition: htup_details.h:275
#define HEAP_XMAX_COMMITTED
Definition: htup_details.h:207
#define HEAP_XMAX_INVALID
Definition: htup_details.h:208
static bool HEAP_LOCKED_UPGRADED(uint16 infomask)
Definition: htup_details.h:251
static bool HEAP_XMAX_IS_EXCL_LOCKED(int16 infomask)
Definition: htup_details.h:269
LockTupleMode
Definition: lockoptions.h:50
@ LockTupleExclusive
Definition: lockoptions.h:58
@ LockTupleNoKeyExclusive
Definition: lockoptions.h:56
@ LockTupleShare
Definition: lockoptions.h:54
@ LockTupleKeyShare
Definition: lockoptions.h:52
MultiXactId MultiXactIdExpand(MultiXactId multi, TransactionId xid, MultiXactStatus status)
Definition: multixact.c:478
bool MultiXactIdIsRunning(MultiXactId multi, bool isLockOnly)
Definition: multixact.c:590
MultiXactId MultiXactIdCreate(TransactionId xid1, MultiXactStatus status1, TransactionId xid2, MultiXactStatus status2)
Definition: multixact.c:425
MultiXactStatus
Definition: multixact.h:39
@ MultiXactStatusForShare
Definition: multixact.h:41
@ MultiXactStatusForNoKeyUpdate
Definition: multixact.h:42
@ MultiXactStatusNoKeyUpdate
Definition: multixact.h:45
@ MultiXactStatusUpdate
Definition: multixact.h:47
@ MultiXactStatusForUpdate
Definition: multixact.h:43
@ MultiXactStatusForKeyShare
Definition: multixact.h:40
static PgChecksumMode mode
Definition: pg_checksums.c:55
bool TransactionIdIsInProgress(TransactionId xid)
Definition: procarray.c:1402
bool TransactionIdDidCommit(TransactionId transactionId)
Definition: transam.c:126
#define InvalidTransactionId
Definition: transam.h:31
bool TransactionIdIsCurrentTransactionId(TransactionId xid)
Definition: xact.c:941

References Assert(), elog, ERROR, get_mxact_status_for_lock(), GetMultiXactIdHintBits(), HEAP_KEYS_UPDATED, HEAP_LOCKED_UPGRADED(), HEAP_XMAX_COMMITTED, HEAP_XMAX_EXCL_LOCK, HEAP_XMAX_INVALID, HEAP_XMAX_IS_EXCL_LOCKED(), HEAP_XMAX_IS_KEYSHR_LOCKED(), HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HEAP_XMAX_IS_SHR_LOCKED(), HEAP_XMAX_KEYSHR_LOCK, HEAP_XMAX_LOCK_ONLY, HEAP_XMAX_SHR_LOCK, InvalidTransactionId, LockTupleExclusive, LockTupleKeyShare, LockTupleNoKeyExclusive, LockTupleShare, mode, MultiXactIdCreate(), MultiXactIdExpand(), MultiXactIdGetUpdateXid(), MultiXactIdIsRunning(), MultiXactStatusForKeyShare, MultiXactStatusForNoKeyUpdate, MultiXactStatusForShare, MultiXactStatusForUpdate, MultiXactStatusNoKeyUpdate, MultiXactStatusUpdate, TransactionIdDidCommit(), TransactionIdIsCurrentTransactionId(), TransactionIdIsInProgress(), TUPLOCK_from_mxstatus, and WARNING.

Referenced by heap_delete(), heap_lock_tuple(), heap_lock_updated_tuple_rec(), and heap_update().

◆ ConditionalMultiXactIdWait()

static bool ConditionalMultiXactIdWait ( MultiXactId  multi,
MultiXactStatus  status,
uint16  infomask,
Relation  rel,
int *  remaining,
bool  logLockFailure 
)
static

Definition at line 7795 of file heapam.c.

7798{
7799 return Do_MultiXactIdWait(multi, status, infomask, true,
7800 rel, NULL, XLTW_None, remaining, logLockFailure);
7801}
static bool Do_MultiXactIdWait(MultiXactId multi, MultiXactStatus status, uint16 infomask, bool nowait, Relation rel, ItemPointer ctid, XLTW_Oper oper, int *remaining, bool logLockFailure)
Definition: heapam.c:7695
int remaining
Definition: informix.c:692
@ XLTW_None
Definition: lmgr.h:26

References Do_MultiXactIdWait(), remaining, and XLTW_None.

Referenced by heap_lock_tuple().

◆ Do_MultiXactIdWait()

static bool Do_MultiXactIdWait ( MultiXactId  multi,
MultiXactStatus  status,
uint16  infomask,
bool  nowait,
Relation  rel,
ItemPointer  ctid,
XLTW_Oper  oper,
int *  remaining,
bool  logLockFailure 
)
static

Definition at line 7695 of file heapam.c.

7699{
7700 bool result = true;
7701 MultiXactMember *members;
7702 int nmembers;
7703 int remain = 0;
7704
7705 /* for pre-pg_upgrade tuples, no need to sleep at all */
7706 nmembers = HEAP_LOCKED_UPGRADED(infomask) ? -1 :
7707 GetMultiXactIdMembers(multi, &members, false,
7708 HEAP_XMAX_IS_LOCKED_ONLY(infomask));
7709
7710 if (nmembers >= 0)
7711 {
7712 int i;
7713
7714 for (i = 0; i < nmembers; i++)
7715 {
7716 TransactionId memxid = members[i].xid;
7717 MultiXactStatus memstatus = members[i].status;
7718
7720 {
7721 remain++;
7722 continue;
7723 }
7724
7726 LOCKMODE_from_mxstatus(status)))
7727 {
7728 if (remaining && TransactionIdIsInProgress(memxid))
7729 remain++;
7730 continue;
7731 }
7732
7733 /*
7734 * This member conflicts with our multi, so we have to sleep (or
7735 * return failure, if asked to avoid waiting.)
7736 *
7737 * Note that we don't set up an error context callback ourselves,
7738 * but instead we pass the info down to XactLockTableWait. This
7739 * might seem a bit wasteful because the context is set up and
7740 * tore down for each member of the multixact, but in reality it
7741 * should be barely noticeable, and it avoids duplicate code.
7742 */
7743 if (nowait)
7744 {
7745 result = ConditionalXactLockTableWait(memxid, logLockFailure);
7746 if (!result)
7747 break;
7748 }
7749 else
7750 XactLockTableWait(memxid, rel, ctid, oper);
7751 }
7752
7753 pfree(members);
7754 }
7755
7756 if (remaining)
7757 *remaining = remain;
7758
7759 return result;
7760}
#define LOCKMODE_from_mxstatus(status)
Definition: heapam.c:154
bool ConditionalXactLockTableWait(TransactionId xid, bool logLockFailure)
Definition: lmgr.c:739
void XactLockTableWait(TransactionId xid, Relation rel, const ItemPointerData *ctid, XLTW_Oper oper)
Definition: lmgr.c:663
bool DoLockModesConflict(LOCKMODE mode1, LOCKMODE mode2)
Definition: lock.c:623
int GetMultiXactIdMembers(MultiXactId multi, MultiXactMember **members, bool from_pgupgrade, bool isLockOnly)
Definition: multixact.c:1290
Operator oper(ParseState *pstate, List *opname, Oid ltypeId, Oid rtypeId, bool noError, int location)
Definition: parse_oper.c:371
TransactionId xid
Definition: multixact.h:59
MultiXactStatus status
Definition: multixact.h:60

References ConditionalXactLockTableWait(), DoLockModesConflict(), GetMultiXactIdMembers(), HEAP_LOCKED_UPGRADED(), HEAP_XMAX_IS_LOCKED_ONLY(), i, LOCKMODE_from_mxstatus, oper(), pfree(), remaining, MultiXactMember::status, TransactionIdIsCurrentTransactionId(), TransactionIdIsInProgress(), XactLockTableWait(), and MultiXactMember::xid.

Referenced by ConditionalMultiXactIdWait(), and MultiXactIdWait().

◆ DoesMultiXactIdConflict()

static bool DoesMultiXactIdConflict ( MultiXactId  multi,
uint16  infomask,
LockTupleMode  lockmode,
bool *  current_is_member 
)
static

Definition at line 7595 of file heapam.c.

7597{
7598 int nmembers;
7599 MultiXactMember *members;
7600 bool result = false;
7601 LOCKMODE wanted = tupleLockExtraInfo[lockmode].hwlock;
7602
7603 if (HEAP_LOCKED_UPGRADED(infomask))
7604 return false;
7605
7606 nmembers = GetMultiXactIdMembers(multi, &members, false,
7607 HEAP_XMAX_IS_LOCKED_ONLY(infomask));
7608 if (nmembers >= 0)
7609 {
7610 int i;
7611
7612 for (i = 0; i < nmembers; i++)
7613 {
7614 TransactionId memxid;
7615 LOCKMODE memlockmode;
7616
7617 if (result && (current_is_member == NULL || *current_is_member))
7618 break;
7619
7620 memlockmode = LOCKMODE_from_mxstatus(members[i].status);
7621
7622 /* ignore members from current xact (but track their presence) */
7623 memxid = members[i].xid;
7625 {
7626 if (current_is_member != NULL)
7627 *current_is_member = true;
7628 continue;
7629 }
7630 else if (result)
7631 continue;
7632
7633 /* ignore members that don't conflict with the lock we want */
7634 if (!DoLockModesConflict(memlockmode, wanted))
7635 continue;
7636
7637 if (ISUPDATE_from_mxstatus(members[i].status))
7638 {
7639 /* ignore aborted updaters */
7640 if (TransactionIdDidAbort(memxid))
7641 continue;
7642 }
7643 else
7644 {
7645 /* ignore lockers-only that are no longer in progress */
7646 if (!TransactionIdIsInProgress(memxid))
7647 continue;
7648 }
7649
7650 /*
7651 * Whatever remains are either live lockers that conflict with our
7652 * wanted lock, and updaters that are not aborted. Those conflict
7653 * with what we want. Set up to return true, but keep going to
7654 * look for the current transaction among the multixact members,
7655 * if needed.
7656 */
7657 result = true;
7658 }
7659 pfree(members);
7660 }
7661
7662 return result;
7663}
static const struct @15 tupleLockExtraInfo[MaxLockTupleMode+1]
int LOCKMODE
Definition: lockdefs.h:26
#define ISUPDATE_from_mxstatus(status)
Definition: multixact.h:53
bool TransactionIdDidAbort(TransactionId transactionId)
Definition: transam.c:188

References DoLockModesConflict(), GetMultiXactIdMembers(), HEAP_LOCKED_UPGRADED(), HEAP_XMAX_IS_LOCKED_ONLY(), i, ISUPDATE_from_mxstatus, LOCKMODE_from_mxstatus, pfree(), TransactionIdDidAbort(), TransactionIdIsCurrentTransactionId(), TransactionIdIsInProgress(), tupleLockExtraInfo, and MultiXactMember::xid.

Referenced by heap_delete(), heap_inplace_lock(), heap_lock_tuple(), and heap_update().

◆ ExtractReplicaIdentity()

static HeapTuple ExtractReplicaIdentity ( Relation  relation,
HeapTuple  tp,
bool  key_required,
bool *  copy 
)
static

Definition at line 9141 of file heapam.c.

9143{
9144 TupleDesc desc = RelationGetDescr(relation);
9145 char replident = relation->rd_rel->relreplident;
9146 Bitmapset *idattrs;
9147 HeapTuple key_tuple;
9148 bool nulls[MaxHeapAttributeNumber];
9150
9151 *copy = false;
9152
9153 if (!RelationIsLogicallyLogged(relation))
9154 return NULL;
9155
9156 if (replident == REPLICA_IDENTITY_NOTHING)
9157 return NULL;
9158
9159 if (replident == REPLICA_IDENTITY_FULL)
9160 {
9161 /*
9162 * When logging the entire old tuple, it very well could contain
9163 * toasted columns. If so, force them to be inlined.
9164 */
9165 if (HeapTupleHasExternal(tp))
9166 {
9167 *copy = true;
9168 tp = toast_flatten_tuple(tp, desc);
9169 }
9170 return tp;
9171 }
9172
9173 /* if the key isn't required and we're only logging the key, we're done */
9174 if (!key_required)
9175 return NULL;
9176
9177 /* find out the replica identity columns */
9178 idattrs = RelationGetIndexAttrBitmap(relation,
9180
9181 /*
9182 * If there's no defined replica identity columns, treat as !key_required.
9183 * (This case should not be reachable from heap_update, since that should
9184 * calculate key_required accurately. But heap_delete just passes
9185 * constant true for key_required, so we can hit this case in deletes.)
9186 */
9187 if (bms_is_empty(idattrs))
9188 return NULL;
9189
9190 /*
9191 * Construct a new tuple containing only the replica identity columns,
9192 * with nulls elsewhere. While we're at it, assert that the replica
9193 * identity columns aren't null.
9194 */
9195 heap_deform_tuple(tp, desc, values, nulls);
9196
9197 for (int i = 0; i < desc->natts; i++)
9198 {
9200 idattrs))
9201 Assert(!nulls[i]);
9202 else
9203 nulls[i] = true;
9204 }
9205
9206 key_tuple = heap_form_tuple(desc, values, nulls);
9207 *copy = true;
9208
9209 bms_free(idattrs);
9210
9211 /*
9212 * If the tuple, which by here only contains indexed columns, still has
9213 * toasted columns, force them to be inlined. This is somewhat unlikely
9214 * since there's limits on the size of indexed columns, so we don't
9215 * duplicate toast_flatten_tuple()s functionality in the above loop over
9216 * the indexed columns, even if it would be more efficient.
9217 */
9218 if (HeapTupleHasExternal(key_tuple))
9219 {
9220 HeapTuple oldtup = key_tuple;
9221
9222 key_tuple = toast_flatten_tuple(oldtup, desc);
9223 heap_freetuple(oldtup);
9224 }
9225
9226 return key_tuple;
9227}
void bms_free(Bitmapset *a)
Definition: bitmapset.c:239
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:510
#define bms_is_empty(a)
Definition: bitmapset.h:118
static Datum values[MAXATTR]
Definition: bootstrap.c:153
HeapTuple toast_flatten_tuple(HeapTuple tup, TupleDesc tupleDesc)
Definition: heaptoast.c:350
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
Definition: heaptuple.c:1117
void heap_deform_tuple(HeapTuple tuple, TupleDesc tupleDesc, Datum *values, bool *isnull)
Definition: heaptuple.c:1346
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1435
static bool HeapTupleHasExternal(const HeapTupleData *tuple)
Definition: htup_details.h:762
#define MaxHeapAttributeNumber
Definition: htup_details.h:48
uint64_t Datum
Definition: postgres.h:70
#define RelationIsLogicallyLogged(relation)
Definition: rel.h:710
#define RelationGetDescr(relation)
Definition: rel.h:540
Bitmapset * RelationGetIndexAttrBitmap(Relation relation, IndexAttrBitmapKind attrKind)
Definition: relcache.c:5303
@ INDEX_ATTR_BITMAP_IDENTITY_KEY
Definition: relcache.h:71
#define FirstLowInvalidHeapAttributeNumber
Definition: sysattr.h:27

References Assert(), bms_free(), bms_is_empty, bms_is_member(), FirstLowInvalidHeapAttributeNumber, heap_deform_tuple(), heap_form_tuple(), heap_freetuple(), HeapTupleHasExternal(), i, INDEX_ATTR_BITMAP_IDENTITY_KEY, MaxHeapAttributeNumber, TupleDescData::natts, RelationData::rd_rel, RelationGetDescr, RelationGetIndexAttrBitmap(), RelationIsLogicallyLogged, toast_flatten_tuple(), and values.

Referenced by heap_delete(), and heap_update().

◆ FreeBulkInsertState()

void FreeBulkInsertState ( BulkInsertState  bistate)

Definition at line 2038 of file heapam.c.

2039{
2040 if (bistate->current_buf != InvalidBuffer)
2041 ReleaseBuffer(bistate->current_buf);
2042 FreeAccessStrategy(bistate->strategy);
2043 pfree(bistate);
2044}
#define InvalidBuffer
Definition: buf.h:25
void ReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:5376
void FreeAccessStrategy(BufferAccessStrategy strategy)
Definition: freelist.c:643
BufferAccessStrategy strategy
Definition: hio.h:31
Buffer current_buf
Definition: hio.h:32

References BulkInsertStateData::current_buf, FreeAccessStrategy(), InvalidBuffer, pfree(), ReleaseBuffer(), and BulkInsertStateData::strategy.

Referenced by ATRewriteTable(), CopyFrom(), CopyMultiInsertBufferCleanup(), intorel_shutdown(), and transientrel_shutdown().

◆ FreezeMultiXactId()

static TransactionId FreezeMultiXactId ( MultiXactId  multi,
uint16  t_infomask,
const struct VacuumCutoffs cutoffs,
uint16 flags,
HeapPageFreeze pagefrz 
)
static

Definition at line 6704 of file heapam.c.

6707{
6708 TransactionId newxmax;
6709 MultiXactMember *members;
6710 int nmembers;
6711 bool need_replace;
6712 int nnewmembers;
6713 MultiXactMember *newmembers;
6714 bool has_lockers;
6715 TransactionId update_xid;
6716 bool update_committed;
6717 TransactionId FreezePageRelfrozenXid;
6718
6719 *flags = 0;
6720
6721 /* We should only be called in Multis */
6722 Assert(t_infomask & HEAP_XMAX_IS_MULTI);
6723
6724 if (!MultiXactIdIsValid(multi) ||
6725 HEAP_LOCKED_UPGRADED(t_infomask))
6726 {
6727 *flags |= FRM_INVALIDATE_XMAX;
6728 pagefrz->freeze_required = true;
6729 return InvalidTransactionId;
6730 }
6731 else if (MultiXactIdPrecedes(multi, cutoffs->relminmxid))
6732 ereport(ERROR,
6734 errmsg_internal("found multixact %u from before relminmxid %u",
6735 multi, cutoffs->relminmxid)));
6736 else if (MultiXactIdPrecedes(multi, cutoffs->OldestMxact))
6737 {
6738 TransactionId update_xact;
6739
6740 /*
6741 * This old multi cannot possibly have members still running, but
6742 * verify just in case. If it was a locker only, it can be removed
6743 * without any further consideration; but if it contained an update,
6744 * we might need to preserve it.
6745 */
6746 if (MultiXactIdIsRunning(multi,
6747 HEAP_XMAX_IS_LOCKED_ONLY(t_infomask)))
6748 ereport(ERROR,
6750 errmsg_internal("multixact %u from before multi freeze cutoff %u found to be still running",
6751 multi, cutoffs->OldestMxact)));
6752
6753 if (HEAP_XMAX_IS_LOCKED_ONLY(t_infomask))
6754 {
6755 *flags |= FRM_INVALIDATE_XMAX;
6756 pagefrz->freeze_required = true;
6757 return InvalidTransactionId;
6758 }
6759
6760 /* replace multi with single XID for its updater? */
6761 update_xact = MultiXactIdGetUpdateXid(multi, t_infomask);
6762 if (TransactionIdPrecedes(update_xact, cutoffs->relfrozenxid))
6763 ereport(ERROR,
6765 errmsg_internal("multixact %u contains update XID %u from before relfrozenxid %u",
6766 multi, update_xact,
6767 cutoffs->relfrozenxid)));
6768 else if (TransactionIdPrecedes(update_xact, cutoffs->OldestXmin))
6769 {
6770 /*
6771 * Updater XID has to have aborted (otherwise the tuple would have
6772 * been pruned away instead, since updater XID is < OldestXmin).
6773 * Just remove xmax.
6774 */
6775 if (TransactionIdDidCommit(update_xact))
6776 ereport(ERROR,
6778 errmsg_internal("multixact %u contains committed update XID %u from before removable cutoff %u",
6779 multi, update_xact,
6780 cutoffs->OldestXmin)));
6781 *flags |= FRM_INVALIDATE_XMAX;
6782 pagefrz->freeze_required = true;
6783 return InvalidTransactionId;
6784 }
6785
6786 /* Have to keep updater XID as new xmax */
6787 *flags |= FRM_RETURN_IS_XID;
6788 pagefrz->freeze_required = true;
6789 return update_xact;
6790 }
6791
6792 /*
6793 * Some member(s) of this Multi may be below FreezeLimit xid cutoff, so we
6794 * need to walk the whole members array to figure out what to do, if
6795 * anything.
6796 */
6797 nmembers =
6798 GetMultiXactIdMembers(multi, &members, false,
6799 HEAP_XMAX_IS_LOCKED_ONLY(t_infomask));
6800 if (nmembers <= 0)
6801 {
6802 /* Nothing worth keeping */
6803 *flags |= FRM_INVALIDATE_XMAX;
6804 pagefrz->freeze_required = true;
6805 return InvalidTransactionId;
6806 }
6807
6808 /*
6809 * The FRM_NOOP case is the only case where we might need to ratchet back
6810 * FreezePageRelfrozenXid or FreezePageRelminMxid. It is also the only
6811 * case where our caller might ratchet back its NoFreezePageRelfrozenXid
6812 * or NoFreezePageRelminMxid "no freeze" trackers to deal with a multi.
6813 * FRM_NOOP handling should result in the NewRelfrozenXid/NewRelminMxid
6814 * trackers managed by VACUUM being ratcheting back by xmax to the degree
6815 * required to make it safe to leave xmax undisturbed, independent of
6816 * whether or not page freezing is triggered somewhere else.
6817 *
6818 * Our policy is to force freezing in every case other than FRM_NOOP,
6819 * which obviates the need to maintain either set of trackers, anywhere.
6820 * Every other case will reliably execute a freeze plan for xmax that
6821 * either replaces xmax with an XID/MXID >= OldestXmin/OldestMxact, or
6822 * sets xmax to an InvalidTransactionId XID, rendering xmax fully frozen.
6823 * (VACUUM's NewRelfrozenXid/NewRelminMxid trackers are initialized with
6824 * OldestXmin/OldestMxact, so later values never need to be tracked here.)
6825 */
6826 need_replace = false;
6827 FreezePageRelfrozenXid = pagefrz->FreezePageRelfrozenXid;
6828 for (int i = 0; i < nmembers; i++)
6829 {
6830 TransactionId xid = members[i].xid;
6831
6832 Assert(!TransactionIdPrecedes(xid, cutoffs->relfrozenxid));
6833
6834 if (TransactionIdPrecedes(xid, cutoffs->FreezeLimit))
6835 {
6836 /* Can't violate the FreezeLimit postcondition */
6837 need_replace = true;
6838 break;
6839 }
6840 if (TransactionIdPrecedes(xid, FreezePageRelfrozenXid))
6841 FreezePageRelfrozenXid = xid;
6842 }
6843
6844 /* Can't violate the MultiXactCutoff postcondition, either */
6845 if (!need_replace)
6846 need_replace = MultiXactIdPrecedes(multi, cutoffs->MultiXactCutoff);
6847
6848 if (!need_replace)
6849 {
6850 /*
6851 * vacuumlazy.c might ratchet back NewRelminMxid, NewRelfrozenXid, or
6852 * both together to make it safe to retain this particular multi after
6853 * freezing its page
6854 */
6855 *flags |= FRM_NOOP;
6856 pagefrz->FreezePageRelfrozenXid = FreezePageRelfrozenXid;
6857 if (MultiXactIdPrecedes(multi, pagefrz->FreezePageRelminMxid))
6858 pagefrz->FreezePageRelminMxid = multi;
6859 pfree(members);
6860 return multi;
6861 }
6862
6863 /*
6864 * Do a more thorough second pass over the multi to figure out which
6865 * member XIDs actually need to be kept. Checking the precise status of
6866 * individual members might even show that we don't need to keep anything.
6867 * That is quite possible even though the Multi must be >= OldestMxact,
6868 * since our second pass only keeps member XIDs when it's truly necessary;
6869 * even member XIDs >= OldestXmin often won't be kept by second pass.
6870 */
6871 nnewmembers = 0;
6872 newmembers = palloc(sizeof(MultiXactMember) * nmembers);
6873 has_lockers = false;
6874 update_xid = InvalidTransactionId;
6875 update_committed = false;
6876
6877 /*
6878 * Determine whether to keep each member xid, or to ignore it instead
6879 */
6880 for (int i = 0; i < nmembers; i++)
6881 {
6882 TransactionId xid = members[i].xid;
6883 MultiXactStatus mstatus = members[i].status;
6884
6885 Assert(!TransactionIdPrecedes(xid, cutoffs->relfrozenxid));
6886
6887 if (!ISUPDATE_from_mxstatus(mstatus))
6888 {
6889 /*
6890 * Locker XID (not updater XID). We only keep lockers that are
6891 * still running.
6892 */
6895 {
6896 if (TransactionIdPrecedes(xid, cutoffs->OldestXmin))
6897 ereport(ERROR,
6899 errmsg_internal("multixact %u contains running locker XID %u from before removable cutoff %u",
6900 multi, xid,
6901 cutoffs->OldestXmin)));
6902 newmembers[nnewmembers++] = members[i];
6903 has_lockers = true;
6904 }
6905
6906 continue;
6907 }
6908
6909 /*
6910 * Updater XID (not locker XID). Should we keep it?
6911 *
6912 * Since the tuple wasn't totally removed when vacuum pruned, the
6913 * update Xid cannot possibly be older than OldestXmin cutoff unless
6914 * the updater XID aborted. If the updater transaction is known
6915 * aborted or crashed then it's okay to ignore it, otherwise not.
6916 *
6917 * In any case the Multi should never contain two updaters, whatever
6918 * their individual commit status. Check for that first, in passing.
6919 */
6920 if (TransactionIdIsValid(update_xid))
6921 ereport(ERROR,
6923 errmsg_internal("multixact %u has two or more updating members",
6924 multi),
6925 errdetail_internal("First updater XID=%u second updater XID=%u.",
6926 update_xid, xid)));
6927
6928 /*
6929 * As with all tuple visibility routines, it's critical to test
6930 * TransactionIdIsInProgress before TransactionIdDidCommit, because of
6931 * race conditions explained in detail in heapam_visibility.c.
6932 */
6935 update_xid = xid;
6936 else if (TransactionIdDidCommit(xid))
6937 {
6938 /*
6939 * The transaction committed, so we can tell caller to set
6940 * HEAP_XMAX_COMMITTED. (We can only do this because we know the
6941 * transaction is not running.)
6942 */
6943 update_committed = true;
6944 update_xid = xid;
6945 }
6946 else
6947 {
6948 /*
6949 * Not in progress, not committed -- must be aborted or crashed;
6950 * we can ignore it.
6951 */
6952 continue;
6953 }
6954
6955 /*
6956 * We determined that updater must be kept -- add it to pending new
6957 * members list
6958 */
6959 if (TransactionIdPrecedes(xid, cutoffs->OldestXmin))
6960 ereport(ERROR,
6962 errmsg_internal("multixact %u contains committed update XID %u from before removable cutoff %u",
6963 multi, xid, cutoffs->OldestXmin)));
6964 newmembers[nnewmembers++] = members[i];
6965 }
6966
6967 pfree(members);
6968
6969 /*
6970 * Determine what to do with caller's multi based on information gathered
6971 * during our second pass
6972 */
6973 if (nnewmembers == 0)
6974 {
6975 /* Nothing worth keeping */
6976 *flags |= FRM_INVALIDATE_XMAX;
6977 newxmax = InvalidTransactionId;
6978 }
6979 else if (TransactionIdIsValid(update_xid) && !has_lockers)
6980 {
6981 /*
6982 * If there's a single member and it's an update, pass it back alone
6983 * without creating a new Multi. (XXX we could do this when there's a
6984 * single remaining locker, too, but that would complicate the API too
6985 * much; moreover, the case with the single updater is more
6986 * interesting, because those are longer-lived.)
6987 */
6988 Assert(nnewmembers == 1);
6989 *flags |= FRM_RETURN_IS_XID;
6990 if (update_committed)
6991 *flags |= FRM_MARK_COMMITTED;
6992 newxmax = update_xid;
6993 }
6994 else
6995 {
6996 /*
6997 * Create a new multixact with the surviving members of the previous
6998 * one, to set as new Xmax in the tuple
6999 */
7000 newxmax = MultiXactIdCreateFromMembers(nnewmembers, newmembers);
7001 *flags |= FRM_RETURN_IS_MULTI;
7002 }
7003
7004 pfree(newmembers);
7005
7006 pagefrz->freeze_required = true;
7007 return newxmax;
7008}
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1161
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1234
int errcode(int sqlerrcode)
Definition: elog.c:854
#define ereport(elevel,...)
Definition: elog.h:150
#define FRM_RETURN_IS_XID
Definition: heapam.c:6653
#define FRM_MARK_COMMITTED
Definition: heapam.c:6655
#define FRM_NOOP
Definition: heapam.c:6651
#define FRM_RETURN_IS_MULTI
Definition: heapam.c:6654
#define FRM_INVALIDATE_XMAX
Definition: heapam.c:6652
bool MultiXactIdPrecedes(MultiXactId multi1, MultiXactId multi2)
Definition: multixact.c:3265
MultiXactId MultiXactIdCreateFromMembers(int nmembers, MultiXactMember *members)
Definition: multixact.c:806
#define MultiXactIdIsValid(multi)
Definition: multixact.h:29
#define ERRCODE_DATA_CORRUPTED
Definition: pg_basebackup.c:42
TransactionId FreezePageRelfrozenXid
Definition: heapam.h:208
bool freeze_required
Definition: heapam.h:182
MultiXactId FreezePageRelminMxid
Definition: heapam.h:209
TransactionId FreezeLimit
Definition: vacuum.h:284
TransactionId OldestXmin
Definition: vacuum.h:274
TransactionId relfrozenxid
Definition: vacuum.h:258
MultiXactId relminmxid
Definition: vacuum.h:259
MultiXactId MultiXactCutoff
Definition: vacuum.h:285
MultiXactId OldestMxact
Definition: vacuum.h:275
bool TransactionIdPrecedes(TransactionId id1, TransactionId id2)
Definition: transam.c:280
#define TransactionIdIsValid(xid)
Definition: transam.h:41

References Assert(), ereport, errcode(), ERRCODE_DATA_CORRUPTED, errdetail_internal(), errmsg_internal(), ERROR, HeapPageFreeze::freeze_required, VacuumCutoffs::FreezeLimit, HeapPageFreeze::FreezePageRelfrozenXid, HeapPageFreeze::FreezePageRelminMxid, FRM_INVALIDATE_XMAX, FRM_MARK_COMMITTED, FRM_NOOP, FRM_RETURN_IS_MULTI, FRM_RETURN_IS_XID, GetMultiXactIdMembers(), HEAP_LOCKED_UPGRADED(), HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, i, InvalidTransactionId, ISUPDATE_from_mxstatus, VacuumCutoffs::MultiXactCutoff, MultiXactIdCreateFromMembers(), MultiXactIdGetUpdateXid(), MultiXactIdIsRunning(), MultiXactIdIsValid, MultiXactIdPrecedes(), VacuumCutoffs::OldestMxact, VacuumCutoffs::OldestXmin, palloc(), pfree(), VacuumCutoffs::relfrozenxid, VacuumCutoffs::relminmxid, MultiXactMember::status, TransactionIdDidCommit(), TransactionIdIsCurrentTransactionId(), TransactionIdIsInProgress(), TransactionIdIsValid, TransactionIdPrecedes(), and MultiXactMember::xid.

Referenced by heap_prepare_freeze_tuple().

◆ get_mxact_status_for_lock()

static MultiXactStatus get_mxact_status_for_lock ( LockTupleMode  mode,
bool  is_update 
)
static

Definition at line 4532 of file heapam.c.

4533{
4534 int retval;
4535
4536 if (is_update)
4537 retval = tupleLockExtraInfo[mode].updstatus;
4538 else
4539 retval = tupleLockExtraInfo[mode].lockstatus;
4540
4541 if (retval == -1)
4542 elog(ERROR, "invalid lock tuple mode %d/%s", mode,
4543 is_update ? "true" : "false");
4544
4545 return (MultiXactStatus) retval;
4546}

References elog, ERROR, mode, and tupleLockExtraInfo.

Referenced by compute_new_xmax_infomask(), heap_lock_tuple(), and test_lockmode_for_conflict().

◆ GetBulkInsertState()

BulkInsertState GetBulkInsertState ( void  )

Definition at line 2021 of file heapam.c.

2022{
2023 BulkInsertState bistate;
2024
2025 bistate = (BulkInsertState) palloc(sizeof(BulkInsertStateData));
2027 bistate->current_buf = InvalidBuffer;
2028 bistate->next_free = InvalidBlockNumber;
2029 bistate->last_free = InvalidBlockNumber;
2030 bistate->already_extended_by = 0;
2031 return bistate;
2032}
@ BAS_BULKWRITE
Definition: bufmgr.h:39
BufferAccessStrategy GetAccessStrategy(BufferAccessStrategyType btype)
Definition: freelist.c:461
struct BulkInsertStateData * BulkInsertState
Definition: heapam.h:46
BlockNumber last_free
Definition: hio.h:49
uint32 already_extended_by
Definition: hio.h:50
BlockNumber next_free
Definition: hio.h:48

References BulkInsertStateData::already_extended_by, BAS_BULKWRITE, BulkInsertStateData::current_buf, GetAccessStrategy(), InvalidBlockNumber, InvalidBuffer, BulkInsertStateData::last_free, BulkInsertStateData::next_free, palloc(), and BulkInsertStateData::strategy.

Referenced by ATRewriteTable(), CopyFrom(), CopyMultiInsertBufferInit(), intorel_startup(), and transientrel_startup().

◆ GetMultiXactIdHintBits()

static void GetMultiXactIdHintBits ( MultiXactId  multi,
uint16 new_infomask,
uint16 new_infomask2 
)
static

Definition at line 7446 of file heapam.c.

7448{
7449 int nmembers;
7450 MultiXactMember *members;
7451 int i;
7453 uint16 bits2 = 0;
7454 bool has_update = false;
7455 LockTupleMode strongest = LockTupleKeyShare;
7456
7457 /*
7458 * We only use this in multis we just created, so they cannot be values
7459 * pre-pg_upgrade.
7460 */
7461 nmembers = GetMultiXactIdMembers(multi, &members, false, false);
7462
7463 for (i = 0; i < nmembers; i++)
7464 {
7466
7467 /*
7468 * Remember the strongest lock mode held by any member of the
7469 * multixact.
7470 */
7471 mode = TUPLOCK_from_mxstatus(members[i].status);
7472 if (mode > strongest)
7473 strongest = mode;
7474
7475 /* See what other bits we need */
7476 switch (members[i].status)
7477 {
7481 break;
7482
7484 bits2 |= HEAP_KEYS_UPDATED;
7485 break;
7486
7488 has_update = true;
7489 break;
7490
7492 bits2 |= HEAP_KEYS_UPDATED;
7493 has_update = true;
7494 break;
7495 }
7496 }
7497
7498 if (strongest == LockTupleExclusive ||
7499 strongest == LockTupleNoKeyExclusive)
7500 bits |= HEAP_XMAX_EXCL_LOCK;
7501 else if (strongest == LockTupleShare)
7502 bits |= HEAP_XMAX_SHR_LOCK;
7503 else if (strongest == LockTupleKeyShare)
7504 bits |= HEAP_XMAX_KEYSHR_LOCK;
7505
7506 if (!has_update)
7507 bits |= HEAP_XMAX_LOCK_ONLY;
7508
7509 if (nmembers > 0)
7510 pfree(members);
7511
7512 *new_infomask = bits;
7513 *new_infomask2 = bits2;
7514}

References GetMultiXactIdMembers(), HEAP_KEYS_UPDATED, HEAP_XMAX_EXCL_LOCK, HEAP_XMAX_IS_MULTI, HEAP_XMAX_KEYSHR_LOCK, HEAP_XMAX_LOCK_ONLY, HEAP_XMAX_SHR_LOCK, i, LockTupleExclusive, LockTupleKeyShare, LockTupleNoKeyExclusive, LockTupleShare, mode, MultiXactStatusForKeyShare, MultiXactStatusForNoKeyUpdate, MultiXactStatusForShare, MultiXactStatusForUpdate, MultiXactStatusNoKeyUpdate, MultiXactStatusUpdate, pfree(), and TUPLOCK_from_mxstatus.

Referenced by compute_new_xmax_infomask(), heap_prepare_freeze_tuple(), and heap_update().

◆ heap_abort_speculative()

void heap_abort_speculative ( Relation  relation,
ItemPointer  tid 
)

Definition at line 6175 of file heapam.c.

6176{
6178 ItemId lp;
6179 HeapTupleData tp;
6180 Page page;
6181 BlockNumber block;
6182 Buffer buffer;
6183
6185
6186 block = ItemPointerGetBlockNumber(tid);
6187 buffer = ReadBuffer(relation, block);
6188 page = BufferGetPage(buffer);
6189
6191
6192 /*
6193 * Page can't be all visible, we just inserted into it, and are still
6194 * running.
6195 */
6196 Assert(!PageIsAllVisible(page));
6197
6200
6201 tp.t_tableOid = RelationGetRelid(relation);
6202 tp.t_data = (HeapTupleHeader) PageGetItem(page, lp);
6203 tp.t_len = ItemIdGetLength(lp);
6204 tp.t_self = *tid;
6205
6206 /*
6207 * Sanity check that the tuple really is a speculatively inserted tuple,
6208 * inserted by us.
6209 */
6210 if (tp.t_data->t_choice.t_heap.t_xmin != xid)
6211 elog(ERROR, "attempted to kill a tuple inserted by another transaction");
6212 if (!(IsToastRelation(relation) || HeapTupleHeaderIsSpeculative(tp.t_data)))
6213 elog(ERROR, "attempted to kill a non-speculative tuple");
6215
6216 /*
6217 * No need to check for serializable conflicts here. There is never a
6218 * need for a combo CID, either. No need to extract replica identity, or
6219 * do anything special with infomask bits.
6220 */
6221
6223
6224 /*
6225 * The tuple will become DEAD immediately. Flag that this page is a
6226 * candidate for pruning by setting xmin to TransactionXmin. While not
6227 * immediately prunable, it is the oldest xid we can cheaply determine
6228 * that's safe against wraparound / being older than the table's
6229 * relfrozenxid. To defend against the unlikely case of a new relation
6230 * having a newer relfrozenxid than our TransactionXmin, use relfrozenxid
6231 * if so (vacuum can't subsequently move relfrozenxid to beyond
6232 * TransactionXmin, so there's no race here).
6233 */
6235 {
6236 TransactionId relfrozenxid = relation->rd_rel->relfrozenxid;
6237 TransactionId prune_xid;
6238
6239 if (TransactionIdPrecedes(TransactionXmin, relfrozenxid))
6240 prune_xid = relfrozenxid;
6241 else
6242 prune_xid = TransactionXmin;
6243 PageSetPrunable(page, prune_xid);
6244 }
6245
6246 /* store transaction information of xact deleting the tuple */
6248 tp.t_data->t_infomask2 &= ~HEAP_KEYS_UPDATED;
6249
6250 /*
6251 * Set the tuple header xmin to InvalidTransactionId. This makes the
6252 * tuple immediately invisible everyone. (In particular, to any
6253 * transactions waiting on the speculative token, woken up later.)
6254 */
6256
6257 /* Clear the speculative insertion token too */
6258 tp.t_data->t_ctid = tp.t_self;
6259
6260 MarkBufferDirty(buffer);
6261
6262 /*
6263 * XLOG stuff
6264 *
6265 * The WAL records generated here match heap_delete(). The same recovery
6266 * routines are used.
6267 */
6268 if (RelationNeedsWAL(relation))
6269 {
6270 xl_heap_delete xlrec;
6271 XLogRecPtr recptr;
6272
6273 xlrec.flags = XLH_DELETE_IS_SUPER;
6275 tp.t_data->t_infomask2);
6277 xlrec.xmax = xid;
6278
6282
6283 /* No replica identity & replication origin logged */
6284
6285 recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_DELETE);
6286
6287 PageSetLSN(page, recptr);
6288 }
6289
6291
6293
6294 if (HeapTupleHasExternal(&tp))
6295 {
6296 Assert(!IsToastRelation(relation));
6297 heap_toast_delete(relation, &tp, true);
6298 }
6299
6300 /*
6301 * Never need to mark tuple for invalidation, since catalogs don't support
6302 * speculative insertion
6303 */
6304
6305 /* Now we can release the buffer */
6306 ReleaseBuffer(buffer);
6307
6308 /* count deletion, as we counted the insertion too */
6309 pgstat_count_heap_delete(relation);
6310}
int Buffer
Definition: buf.h:23
void MarkBufferDirty(Buffer buffer)
Definition: bufmgr.c:2942
void LockBuffer(Buffer buffer, int mode)
Definition: bufmgr.c:5610
Buffer ReadBuffer(Relation reln, BlockNumber blockNum)
Definition: bufmgr.c:745
#define BUFFER_LOCK_UNLOCK
Definition: bufmgr.h:196
static Page BufferGetPage(Buffer buffer)
Definition: bufmgr.h:418
#define BUFFER_LOCK_EXCLUSIVE
Definition: bufmgr.h:198
static bool PageIsAllVisible(const PageData *page)
Definition: bufpage.h:429
static Item PageGetItem(const PageData *page, const ItemIdData *itemId)
Definition: bufpage.h:354
static ItemId PageGetItemId(Page page, OffsetNumber offsetNumber)
Definition: bufpage.h:244
static void PageSetLSN(Page page, XLogRecPtr lsn)
Definition: bufpage.h:391
PageData * Page
Definition: bufpage.h:82
#define PageSetPrunable(page, xid)
Definition: bufpage.h:447
bool IsToastRelation(Relation relation)
Definition: catalog.c:206
static uint8 compute_infobits(uint16 infomask, uint16 infomask2)
Definition: heapam.c:2733
#define XLOG_HEAP_DELETE
Definition: heapam_xlog.h:34
#define SizeOfHeapDelete
Definition: heapam_xlog.h:121
#define XLH_DELETE_IS_SUPER
Definition: heapam_xlog.h:105
void heap_toast_delete(Relation rel, HeapTuple oldtup, bool is_speculative)
Definition: heaptoast.c:43
HeapTupleHeaderData * HeapTupleHeader
Definition: htup.h:23
#define HEAP_XMAX_BITS
Definition: htup_details.h:281
static bool HeapTupleHeaderIsHeapOnly(const HeapTupleHeaderData *tup)
Definition: htup_details.h:555
#define HEAP_MOVED
Definition: htup_details.h:213
static bool HeapTupleHeaderIsSpeculative(const HeapTupleHeaderData *tup)
Definition: htup_details.h:461
static void HeapTupleHeaderSetXmin(HeapTupleHeaderData *tup, TransactionId xid)
Definition: htup_details.h:331
#define ItemIdGetLength(itemId)
Definition: itemid.h:59
#define ItemIdIsNormal(itemId)
Definition: itemid.h:99
static OffsetNumber ItemPointerGetOffsetNumber(const ItemPointerData *pointer)
Definition: itemptr.h:124
static bool ItemPointerIsValid(const ItemPointerData *pointer)
Definition: itemptr.h:83
#define START_CRIT_SECTION()
Definition: miscadmin.h:149
#define END_CRIT_SECTION()
Definition: miscadmin.h:151
void pgstat_count_heap_delete(Relation rel)
#define RelationGetRelid(relation)
Definition: rel.h:514
#define RelationNeedsWAL(relation)
Definition: rel.h:637
TransactionId TransactionXmin
Definition: snapmgr.c:158
ItemPointerData t_self
Definition: htup.h:65
uint32 t_len
Definition: htup.h:64
HeapTupleHeader t_data
Definition: htup.h:68
Oid t_tableOid
Definition: htup.h:66
TransactionId t_xmin
Definition: htup_details.h:124
union HeapTupleHeaderData::@49 t_choice
ItemPointerData t_ctid
Definition: htup_details.h:161
HeapTupleFields t_heap
Definition: htup_details.h:157
TransactionId xmax
Definition: heapam_xlog.h:115
OffsetNumber offnum
Definition: heapam_xlog.h:116
uint8 infobits_set
Definition: heapam_xlog.h:117
TransactionId GetCurrentTransactionId(void)
Definition: xact.c:454
uint64 XLogRecPtr
Definition: xlogdefs.h:21
XLogRecPtr XLogInsert(RmgrId rmid, uint8 info)
Definition: xloginsert.c:475
void XLogRegisterData(const void *data, uint32 len)
Definition: xloginsert.c:365
void XLogRegisterBuffer(uint8 block_id, Buffer buffer, uint8 flags)
Definition: xloginsert.c:242
void XLogBeginInsert(void)
Definition: xloginsert.c:149
#define REGBUF_STANDARD
Definition: xloginsert.h:35

References Assert(), BUFFER_LOCK_EXCLUSIVE, BUFFER_LOCK_UNLOCK, BufferGetPage(), compute_infobits(), elog, END_CRIT_SECTION, ERROR, xl_heap_delete::flags, GetCurrentTransactionId(), HEAP_MOVED, heap_toast_delete(), HEAP_XMAX_BITS, HeapTupleHasExternal(), HeapTupleHeaderIsHeapOnly(), HeapTupleHeaderIsSpeculative(), HeapTupleHeaderSetXmin(), xl_heap_delete::infobits_set, InvalidTransactionId, IsToastRelation(), ItemIdGetLength, ItemIdIsNormal, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), ItemPointerIsValid(), LockBuffer(), MarkBufferDirty(), xl_heap_delete::offnum, PageGetItem(), PageGetItemId(), PageIsAllVisible(), PageSetLSN(), PageSetPrunable, pgstat_count_heap_delete(), RelationData::rd_rel, ReadBuffer(), REGBUF_STANDARD, RelationGetRelid, RelationNeedsWAL, ReleaseBuffer(), SizeOfHeapDelete, START_CRIT_SECTION, HeapTupleHeaderData::t_choice, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, HeapTupleHeaderData::t_heap, HeapTupleHeaderData::t_infomask, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_self, HeapTupleData::t_tableOid, HeapTupleFields::t_xmin, TransactionIdIsValid, TransactionIdPrecedes(), TransactionXmin, XLH_DELETE_IS_SUPER, XLOG_HEAP_DELETE, XLogBeginInsert(), XLogInsert(), XLogRegisterBuffer(), XLogRegisterData(), and xl_heap_delete::xmax.

Referenced by heapam_tuple_complete_speculative(), and toast_delete_datum().

◆ heap_acquire_tuplock()

static bool heap_acquire_tuplock ( Relation  relation,
ItemPointer  tid,
LockTupleMode  mode,
LockWaitPolicy  wait_policy,
bool *  have_tuple_lock 
)
static

Definition at line 5277 of file heapam.c.

5279{
5280 if (*have_tuple_lock)
5281 return true;
5282
5283 switch (wait_policy)
5284 {
5285 case LockWaitBlock:
5286 LockTupleTuplock(relation, tid, mode);
5287 break;
5288
5289 case LockWaitSkip:
5290 if (!ConditionalLockTupleTuplock(relation, tid, mode, false))
5291 return false;
5292 break;
5293
5294 case LockWaitError:
5296 ereport(ERROR,
5297 (errcode(ERRCODE_LOCK_NOT_AVAILABLE),
5298 errmsg("could not obtain lock on row in relation \"%s\"",
5299 RelationGetRelationName(relation))));
5300 break;
5301 }
5302 *have_tuple_lock = true;
5303
5304 return true;
5305}
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define LockTupleTuplock(rel, tup, mode)
Definition: heapam.c:162
#define ConditionalLockTupleTuplock(rel, tup, mode, log)
Definition: heapam.c:166
bool log_lock_failures
Definition: lock.c:54
@ LockWaitSkip
Definition: lockoptions.h:41
@ LockWaitBlock
Definition: lockoptions.h:39
@ LockWaitError
Definition: lockoptions.h:43
#define RelationGetRelationName(relation)
Definition: rel.h:548

References ConditionalLockTupleTuplock, ereport, errcode(), errmsg(), ERROR, LockTupleTuplock, LockWaitBlock, LockWaitError, LockWaitSkip, log_lock_failures, mode, and RelationGetRelationName.

Referenced by heap_delete(), heap_lock_tuple(), and heap_update().

◆ heap_attr_equals()

static bool heap_attr_equals ( TupleDesc  tupdesc,
int  attrnum,
Datum  value1,
Datum  value2,
bool  isnull1,
bool  isnull2 
)
static

Definition at line 4350 of file heapam.c.

4352{
4353 /*
4354 * If one value is NULL and other is not, then they are certainly not
4355 * equal
4356 */
4357 if (isnull1 != isnull2)
4358 return false;
4359
4360 /*
4361 * If both are NULL, they can be considered equal.
4362 */
4363 if (isnull1)
4364 return true;
4365
4366 /*
4367 * We do simple binary comparison of the two datums. This may be overly
4368 * strict because there can be multiple binary representations for the
4369 * same logical value. But we should be OK as long as there are no false
4370 * positives. Using a type-specific equality operator is messy because
4371 * there could be multiple notions of equality in different operator
4372 * classes; furthermore, we cannot safely invoke user-defined functions
4373 * while holding exclusive buffer lock.
4374 */
4375 if (attrnum <= 0)
4376 {
4377 /* The only allowed system columns are OIDs, so do this */
4378 return (DatumGetObjectId(value1) == DatumGetObjectId(value2));
4379 }
4380 else
4381 {
4382 CompactAttribute *att;
4383
4384 Assert(attrnum <= tupdesc->natts);
4385 att = TupleDescCompactAttr(tupdesc, attrnum - 1);
4386 return datumIsEqual(value1, value2, att->attbyval, att->attlen);
4387 }
4388}
bool datumIsEqual(Datum value1, Datum value2, bool typByVal, int typLen)
Definition: datum.c:223
static Oid DatumGetObjectId(Datum X)
Definition: postgres.h:252
int16 attlen
Definition: tupdesc.h:71
static CompactAttribute * TupleDescCompactAttr(TupleDesc tupdesc, int i)
Definition: tupdesc.h:175

References Assert(), CompactAttribute::attbyval, CompactAttribute::attlen, DatumGetObjectId(), datumIsEqual(), and TupleDescCompactAttr().

Referenced by HeapDetermineColumnsInfo().

◆ heap_beginscan()

TableScanDesc heap_beginscan ( Relation  relation,
Snapshot  snapshot,
int  nkeys,
ScanKey  key,
ParallelTableScanDesc  parallel_scan,
uint32  flags 
)

Definition at line 1100 of file heapam.c.

1104{
1105 HeapScanDesc scan;
1106
1107 /*
1108 * increment relation ref count while scanning relation
1109 *
1110 * This is just to make really sure the relcache entry won't go away while
1111 * the scan has a pointer to it. Caller should be holding the rel open
1112 * anyway, so this is redundant in all normal scenarios...
1113 */
1115
1116 /*
1117 * allocate and initialize scan descriptor
1118 */
1119 if (flags & SO_TYPE_BITMAPSCAN)
1120 {
1122
1123 /*
1124 * Bitmap Heap scans do not have any fields that a normal Heap Scan
1125 * does not have, so no special initializations required here.
1126 */
1127 scan = (HeapScanDesc) bscan;
1128 }
1129 else
1130 scan = (HeapScanDesc) palloc(sizeof(HeapScanDescData));
1131
1132 scan->rs_base.rs_rd = relation;
1133 scan->rs_base.rs_snapshot = snapshot;
1134 scan->rs_base.rs_nkeys = nkeys;
1135 scan->rs_base.rs_flags = flags;
1136 scan->rs_base.rs_parallel = parallel_scan;
1137 scan->rs_strategy = NULL; /* set in initscan */
1138 scan->rs_cbuf = InvalidBuffer;
1139
1140 /*
1141 * Disable page-at-a-time mode if it's not a MVCC-safe snapshot.
1142 */
1143 if (!(snapshot && IsMVCCSnapshot(snapshot)))
1144 scan->rs_base.rs_flags &= ~SO_ALLOW_PAGEMODE;
1145
1146 /* Check that a historic snapshot is not used for non-catalog tables */
1147 if (snapshot &&
1148 IsHistoricMVCCSnapshot(snapshot) &&
1150 {
1151 ereport(ERROR,
1152 (errcode(ERRCODE_INVALID_TRANSACTION_STATE),
1153 errmsg("cannot query non-catalog table \"%s\" during logical decoding",
1154 RelationGetRelationName(relation))));
1155 }
1156
1157 /*
1158 * For seqscan and sample scans in a serializable transaction, acquire a
1159 * predicate lock on the entire relation. This is required not only to
1160 * lock all the matching tuples, but also to conflict with new insertions
1161 * into the table. In an indexscan, we take page locks on the index pages
1162 * covering the range specified in the scan qual, but in a heap scan there
1163 * is nothing more fine-grained to lock. A bitmap scan is a different
1164 * story, there we have already scanned the index and locked the index
1165 * pages covering the predicate. But in that case we still have to lock
1166 * any matching heap tuples. For sample scan we could optimize the locking
1167 * to be at least page-level granularity, but we'd need to add per-tuple
1168 * locking for that.
1169 */
1171 {
1172 /*
1173 * Ensure a missing snapshot is noticed reliably, even if the
1174 * isolation mode means predicate locking isn't performed (and
1175 * therefore the snapshot isn't used here).
1176 */
1177 Assert(snapshot);
1178 PredicateLockRelation(relation, snapshot);
1179 }
1180
1181 /* we only need to set this up once */
1182 scan->rs_ctup.t_tableOid = RelationGetRelid(relation);
1183
1184 /*
1185 * Allocate memory to keep track of page allocation for parallel workers
1186 * when doing a parallel scan.
1187 */
1188 if (parallel_scan != NULL)
1190 else
1191 scan->rs_parallelworkerdata = NULL;
1192
1193 /*
1194 * we do this here instead of in initscan() because heap_rescan also calls
1195 * initscan() and we don't want to allocate memory again
1196 */
1197 if (nkeys > 0)
1198 scan->rs_base.rs_key = (ScanKey) palloc(sizeof(ScanKeyData) * nkeys);
1199 else
1200 scan->rs_base.rs_key = NULL;
1201
1202 initscan(scan, key, false);
1203
1204 scan->rs_read_stream = NULL;
1205
1206 /*
1207 * Set up a read stream for sequential scans and TID range scans. This
1208 * should be done after initscan() because initscan() allocates the
1209 * BufferAccessStrategy object passed to the read stream API.
1210 */
1211 if (scan->rs_base.rs_flags & SO_TYPE_SEQSCAN ||
1213 {
1215
1216 if (scan->rs_base.rs_parallel)
1218 else
1220
1221 /* ---
1222 * It is safe to use batchmode as the only locks taken by `cb`
1223 * are never taken while waiting for IO:
1224 * - SyncScanLock is used in the non-parallel case
1225 * - in the parallel case, only spinlocks and atomics are used
1226 * ---
1227 */
1230 scan->rs_strategy,
1231 scan->rs_base.rs_rd,
1233 cb,
1234 scan,
1235 0);
1236 }
1237 else if (scan->rs_base.rs_flags & SO_TYPE_BITMAPSCAN)
1238 {
1241 scan->rs_strategy,
1242 scan->rs_base.rs_rd,
1245 scan,
1246 sizeof(TBMIterateResult));
1247 }
1248
1249
1250 return (TableScanDesc) scan;
1251}
static BlockNumber heap_scan_stream_read_next_parallel(ReadStream *stream, void *callback_private_data, void *per_buffer_data)
Definition: heapam.c:247
static BlockNumber heap_scan_stream_read_next_serial(ReadStream *stream, void *callback_private_data, void *per_buffer_data)
Definition: heapam.c:285
static BlockNumber bitmapheap_stream_read_next(ReadStream *pgsr, void *private_data, void *per_buffer_data)
Definition: heapam.c:310
static void initscan(HeapScanDesc scan, ScanKey key, bool keep_startblock)
Definition: heapam.c:350
void PredicateLockRelation(Relation relation, Snapshot snapshot)
Definition: predicate.c:2576
ReadStream * read_stream_begin_relation(int flags, BufferAccessStrategy strategy, Relation rel, ForkNumber forknum, ReadStreamBlockNumberCB callback, void *callback_private_data, size_t per_buffer_data_size)
Definition: read_stream.c:737
#define READ_STREAM_USE_BATCHING
Definition: read_stream.h:64
BlockNumber(* ReadStreamBlockNumberCB)(ReadStream *stream, void *callback_private_data, void *per_buffer_data)
Definition: read_stream.h:77
#define READ_STREAM_DEFAULT
Definition: read_stream.h:21
#define READ_STREAM_SEQUENTIAL
Definition: read_stream.h:36
#define RelationIsAccessibleInLogicalDecoding(relation)
Definition: rel.h:693
void RelationIncrementReferenceCount(Relation rel)
Definition: relcache.c:2187
@ MAIN_FORKNUM
Definition: relpath.h:58
ScanKeyData * ScanKey
Definition: skey.h:75
#define IsHistoricMVCCSnapshot(snapshot)
Definition: snapmgr.h:59
#define IsMVCCSnapshot(snapshot)
Definition: snapmgr.h:55
BufferAccessStrategy rs_strategy
Definition: heapam.h:73
Buffer rs_cbuf
Definition: heapam.h:70
ParallelBlockTableScanWorkerData * rs_parallelworkerdata
Definition: heapam.h:95
HeapTupleData rs_ctup
Definition: heapam.h:75
ReadStream * rs_read_stream
Definition: heapam.h:78
Relation rs_rd
Definition: relscan.h:36
uint32 rs_flags
Definition: relscan.h:64
struct ScanKeyData * rs_key
Definition: relscan.h:39
struct SnapshotData * rs_snapshot
Definition: relscan.h:37
struct ParallelTableScanDescData * rs_parallel
Definition: relscan.h:66
@ SO_TYPE_TIDRANGESCAN
Definition: tableam.h:53
@ SO_TYPE_SAMPLESCAN
Definition: tableam.h:51
@ SO_TYPE_SEQSCAN
Definition: tableam.h:49
@ SO_TYPE_BITMAPSCAN
Definition: tableam.h:50

References Assert(), bitmapheap_stream_read_next(), ereport, errcode(), errmsg(), ERROR, heap_scan_stream_read_next_parallel(), heap_scan_stream_read_next_serial(), initscan(), InvalidBuffer, IsHistoricMVCCSnapshot, IsMVCCSnapshot, sort-test::key, MAIN_FORKNUM, palloc(), PredicateLockRelation(), read_stream_begin_relation(), READ_STREAM_DEFAULT, READ_STREAM_SEQUENTIAL, READ_STREAM_USE_BATCHING, RelationGetRelationName, RelationGetRelid, RelationIncrementReferenceCount(), RelationIsAccessibleInLogicalDecoding, HeapScanDescData::rs_base, HeapScanDescData::rs_cbuf, HeapScanDescData::rs_ctup, TableScanDescData::rs_flags, TableScanDescData::rs_key, TableScanDescData::rs_nkeys, TableScanDescData::rs_parallel, HeapScanDescData::rs_parallelworkerdata, TableScanDescData::rs_rd, HeapScanDescData::rs_read_stream, TableScanDescData::rs_snapshot, HeapScanDescData::rs_strategy, SO_TYPE_BITMAPSCAN, SO_TYPE_SAMPLESCAN, SO_TYPE_SEQSCAN, SO_TYPE_TIDRANGESCAN, and HeapTupleData::t_tableOid.

◆ heap_delete()

TM_Result heap_delete ( Relation  relation,
ItemPointer  tid,
CommandId  cid,
Snapshot  crosscheck,
bool  wait,
TM_FailureData tmfd,
bool  changingPart 
)

Definition at line 2778 of file heapam.c.

2781{
2782 TM_Result result;
2784 ItemId lp;
2785 HeapTupleData tp;
2786 Page page;
2787 BlockNumber block;
2788 Buffer buffer;
2789 Buffer vmbuffer = InvalidBuffer;
2790 TransactionId new_xmax;
2791 uint16 new_infomask,
2792 new_infomask2;
2793 bool have_tuple_lock = false;
2794 bool iscombo;
2795 bool all_visible_cleared = false;
2796 HeapTuple old_key_tuple = NULL; /* replica identity of the tuple */
2797 bool old_key_copied = false;
2798
2800
2801 AssertHasSnapshotForToast(relation);
2802
2803 /*
2804 * Forbid this during a parallel operation, lest it allocate a combo CID.
2805 * Other workers might need that combo CID for visibility checks, and we
2806 * have no provision for broadcasting it to them.
2807 */
2808 if (IsInParallelMode())
2809 ereport(ERROR,
2810 (errcode(ERRCODE_INVALID_TRANSACTION_STATE),
2811 errmsg("cannot delete tuples during a parallel operation")));
2812
2813 block = ItemPointerGetBlockNumber(tid);
2814 buffer = ReadBuffer(relation, block);
2815 page = BufferGetPage(buffer);
2816
2817 /*
2818 * Before locking the buffer, pin the visibility map page if it appears to
2819 * be necessary. Since we haven't got the lock yet, someone else might be
2820 * in the middle of changing this, so we'll need to recheck after we have
2821 * the lock.
2822 */
2823 if (PageIsAllVisible(page))
2824 visibilitymap_pin(relation, block, &vmbuffer);
2825
2827
2830
2831 tp.t_tableOid = RelationGetRelid(relation);
2832 tp.t_data = (HeapTupleHeader) PageGetItem(page, lp);
2833 tp.t_len = ItemIdGetLength(lp);
2834 tp.t_self = *tid;
2835
2836l1:
2837
2838 /*
2839 * If we didn't pin the visibility map page and the page has become all
2840 * visible while we were busy locking the buffer, we'll have to unlock and
2841 * re-lock, to avoid holding the buffer lock across an I/O. That's a bit
2842 * unfortunate, but hopefully shouldn't happen often.
2843 */
2844 if (vmbuffer == InvalidBuffer && PageIsAllVisible(page))
2845 {
2847 visibilitymap_pin(relation, block, &vmbuffer);
2849 }
2850
2851 result = HeapTupleSatisfiesUpdate(&tp, cid, buffer);
2852
2853 if (result == TM_Invisible)
2854 {
2855 UnlockReleaseBuffer(buffer);
2856 ereport(ERROR,
2857 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
2858 errmsg("attempted to delete invisible tuple")));
2859 }
2860 else if (result == TM_BeingModified && wait)
2861 {
2862 TransactionId xwait;
2863 uint16 infomask;
2864
2865 /* must copy state data before unlocking buffer */
2867 infomask = tp.t_data->t_infomask;
2868
2869 /*
2870 * Sleep until concurrent transaction ends -- except when there's a
2871 * single locker and it's our own transaction. Note we don't care
2872 * which lock mode the locker has, because we need the strongest one.
2873 *
2874 * Before sleeping, we need to acquire tuple lock to establish our
2875 * priority for the tuple (see heap_lock_tuple). LockTuple will
2876 * release us when we are next-in-line for the tuple.
2877 *
2878 * If we are forced to "start over" below, we keep the tuple lock;
2879 * this arranges that we stay at the head of the line while rechecking
2880 * tuple state.
2881 */
2882 if (infomask & HEAP_XMAX_IS_MULTI)
2883 {
2884 bool current_is_member = false;
2885
2886 if (DoesMultiXactIdConflict((MultiXactId) xwait, infomask,
2887 LockTupleExclusive, &current_is_member))
2888 {
2890
2891 /*
2892 * Acquire the lock, if necessary (but skip it when we're
2893 * requesting a lock and already have one; avoids deadlock).
2894 */
2895 if (!current_is_member)
2897 LockWaitBlock, &have_tuple_lock);
2898
2899 /* wait for multixact */
2901 relation, &(tp.t_self), XLTW_Delete,
2902 NULL);
2904
2905 /*
2906 * If xwait had just locked the tuple then some other xact
2907 * could update this tuple before we get to this point. Check
2908 * for xmax change, and start over if so.
2909 *
2910 * We also must start over if we didn't pin the VM page, and
2911 * the page has become all visible.
2912 */
2913 if ((vmbuffer == InvalidBuffer && PageIsAllVisible(page)) ||
2914 xmax_infomask_changed(tp.t_data->t_infomask, infomask) ||
2916 xwait))
2917 goto l1;
2918 }
2919
2920 /*
2921 * You might think the multixact is necessarily done here, but not
2922 * so: it could have surviving members, namely our own xact or
2923 * other subxacts of this backend. It is legal for us to delete
2924 * the tuple in either case, however (the latter case is
2925 * essentially a situation of upgrading our former shared lock to
2926 * exclusive). We don't bother changing the on-disk hint bits
2927 * since we are about to overwrite the xmax altogether.
2928 */
2929 }
2930 else if (!TransactionIdIsCurrentTransactionId(xwait))
2931 {
2932 /*
2933 * Wait for regular transaction to end; but first, acquire tuple
2934 * lock.
2935 */
2938 LockWaitBlock, &have_tuple_lock);
2939 XactLockTableWait(xwait, relation, &(tp.t_self), XLTW_Delete);
2941
2942 /*
2943 * xwait is done, but if xwait had just locked the tuple then some
2944 * other xact could update this tuple before we get to this point.
2945 * Check for xmax change, and start over if so.
2946 *
2947 * We also must start over if we didn't pin the VM page, and the
2948 * page has become all visible.
2949 */
2950 if ((vmbuffer == InvalidBuffer && PageIsAllVisible(page)) ||
2951 xmax_infomask_changed(tp.t_data->t_infomask, infomask) ||
2953 xwait))
2954 goto l1;
2955
2956 /* Otherwise check if it committed or aborted */
2957 UpdateXmaxHintBits(tp.t_data, buffer, xwait);
2958 }
2959
2960 /*
2961 * We may overwrite if previous xmax aborted, or if it committed but
2962 * only locked the tuple without updating it.
2963 */
2964 if ((tp.t_data->t_infomask & HEAP_XMAX_INVALID) ||
2967 result = TM_Ok;
2968 else if (!ItemPointerEquals(&tp.t_self, &tp.t_data->t_ctid))
2969 result = TM_Updated;
2970 else
2971 result = TM_Deleted;
2972 }
2973
2974 /* sanity check the result HeapTupleSatisfiesUpdate() and the logic above */
2975 if (result != TM_Ok)
2976 {
2977 Assert(result == TM_SelfModified ||
2978 result == TM_Updated ||
2979 result == TM_Deleted ||
2980 result == TM_BeingModified);
2982 Assert(result != TM_Updated ||
2984 }
2985
2986 if (crosscheck != InvalidSnapshot && result == TM_Ok)
2987 {
2988 /* Perform additional check for transaction-snapshot mode RI updates */
2989 if (!HeapTupleSatisfiesVisibility(&tp, crosscheck, buffer))
2990 result = TM_Updated;
2991 }
2992
2993 if (result != TM_Ok)
2994 {
2995 tmfd->ctid = tp.t_data->t_ctid;
2997 if (result == TM_SelfModified)
2999 else
3000 tmfd->cmax = InvalidCommandId;
3001 UnlockReleaseBuffer(buffer);
3002 if (have_tuple_lock)
3004 if (vmbuffer != InvalidBuffer)
3005 ReleaseBuffer(vmbuffer);
3006 return result;
3007 }
3008
3009 /*
3010 * We're about to do the actual delete -- check for conflict first, to
3011 * avoid possibly having to roll back work we've just done.
3012 *
3013 * This is safe without a recheck as long as there is no possibility of
3014 * another process scanning the page between this check and the delete
3015 * being visible to the scan (i.e., an exclusive buffer content lock is
3016 * continuously held from this point until the tuple delete is visible).
3017 */
3019
3020 /* replace cid with a combo CID if necessary */
3021 HeapTupleHeaderAdjustCmax(tp.t_data, &cid, &iscombo);
3022
3023 /*
3024 * Compute replica identity tuple before entering the critical section so
3025 * we don't PANIC upon a memory allocation failure.
3026 */
3027 old_key_tuple = ExtractReplicaIdentity(relation, &tp, true, &old_key_copied);
3028
3029 /*
3030 * If this is the first possibly-multixact-able operation in the current
3031 * transaction, set my per-backend OldestMemberMXactId setting. We can be
3032 * certain that the transaction will never become a member of any older
3033 * MultiXactIds than that. (We have to do this even if we end up just
3034 * using our own TransactionId below, since some other backend could
3035 * incorporate our XID into a MultiXact immediately afterwards.)
3036 */
3038
3041 xid, LockTupleExclusive, true,
3042 &new_xmax, &new_infomask, &new_infomask2);
3043
3045
3046 /*
3047 * If this transaction commits, the tuple will become DEAD sooner or
3048 * later. Set flag that this page is a candidate for pruning once our xid
3049 * falls below the OldestXmin horizon. If the transaction finally aborts,
3050 * the subsequent page pruning will be a no-op and the hint will be
3051 * cleared.
3052 */
3053 PageSetPrunable(page, xid);
3054
3055 if (PageIsAllVisible(page))
3056 {
3057 all_visible_cleared = true;
3058 PageClearAllVisible(page);
3059 visibilitymap_clear(relation, BufferGetBlockNumber(buffer),
3060 vmbuffer, VISIBILITYMAP_VALID_BITS);
3061 }
3062
3063 /* store transaction information of xact deleting the tuple */
3065 tp.t_data->t_infomask2 &= ~HEAP_KEYS_UPDATED;
3066 tp.t_data->t_infomask |= new_infomask;
3067 tp.t_data->t_infomask2 |= new_infomask2;
3069 HeapTupleHeaderSetXmax(tp.t_data, new_xmax);
3070 HeapTupleHeaderSetCmax(tp.t_data, cid, iscombo);
3071 /* Make sure there is no forward chain link in t_ctid */
3072 tp.t_data->t_ctid = tp.t_self;
3073
3074 /* Signal that this is actually a move into another partition */
3075 if (changingPart)
3077
3078 MarkBufferDirty(buffer);
3079
3080 /*
3081 * XLOG stuff
3082 *
3083 * NB: heap_abort_speculative() uses the same xlog record and replay
3084 * routines.
3085 */
3086 if (RelationNeedsWAL(relation))
3087 {
3088 xl_heap_delete xlrec;
3089 xl_heap_header xlhdr;
3090 XLogRecPtr recptr;
3091
3092 /*
3093 * For logical decode we need combo CIDs to properly decode the
3094 * catalog
3095 */
3097 log_heap_new_cid(relation, &tp);
3098
3099 xlrec.flags = 0;
3100 if (all_visible_cleared)
3102 if (changingPart)
3105 tp.t_data->t_infomask2);
3107 xlrec.xmax = new_xmax;
3108
3109 if (old_key_tuple != NULL)
3110 {
3111 if (relation->rd_rel->relreplident == REPLICA_IDENTITY_FULL)
3113 else
3115 }
3116
3119
3121
3122 /*
3123 * Log replica identity of the deleted tuple if there is one
3124 */
3125 if (old_key_tuple != NULL)
3126 {
3127 xlhdr.t_infomask2 = old_key_tuple->t_data->t_infomask2;
3128 xlhdr.t_infomask = old_key_tuple->t_data->t_infomask;
3129 xlhdr.t_hoff = old_key_tuple->t_data->t_hoff;
3130
3132 XLogRegisterData((char *) old_key_tuple->t_data
3134 old_key_tuple->t_len
3136 }
3137
3138 /* filtering by origin on a row level is much more efficient */
3140
3141 recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_DELETE);
3142
3143 PageSetLSN(page, recptr);
3144 }
3145
3147
3149
3150 if (vmbuffer != InvalidBuffer)
3151 ReleaseBuffer(vmbuffer);
3152
3153 /*
3154 * If the tuple has toasted out-of-line attributes, we need to delete
3155 * those items too. We have to do this before releasing the buffer
3156 * because we need to look at the contents of the tuple, but it's OK to
3157 * release the content lock on the buffer first.
3158 */
3159 if (relation->rd_rel->relkind != RELKIND_RELATION &&
3160 relation->rd_rel->relkind != RELKIND_MATVIEW)
3161 {
3162 /* toast table entries should never be recursively toasted */
3164 }
3165 else if (HeapTupleHasExternal(&tp))
3166 heap_toast_delete(relation, &tp, false);
3167
3168 /*
3169 * Mark tuple for invalidation from system caches at next command
3170 * boundary. We have to do this before releasing the buffer because we
3171 * need to look at the contents of the tuple.
3172 */
3173 CacheInvalidateHeapTuple(relation, &tp, NULL);
3174
3175 /* Now we can release the buffer */
3176 ReleaseBuffer(buffer);
3177
3178 /*
3179 * Release the lmgr tuple lock, if we had it.
3180 */
3181 if (have_tuple_lock)
3183
3184 pgstat_count_heap_delete(relation);
3185
3186 if (old_key_tuple != NULL && old_key_copied)
3187 heap_freetuple(old_key_tuple);
3188
3189 return TM_Ok;
3190}
BlockNumber BufferGetBlockNumber(Buffer buffer)
Definition: bufmgr.c:4229
void UnlockReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:5393
static void PageClearAllVisible(Page page)
Definition: bufpage.h:439
#define InvalidCommandId
Definition: c.h:674
void HeapTupleHeaderAdjustCmax(const HeapTupleHeaderData *tup, CommandId *cmax, bool *iscombo)
Definition: combocid.c:153
CommandId HeapTupleHeaderGetCmax(const HeapTupleHeaderData *tup)
Definition: combocid.c:118
static bool DoesMultiXactIdConflict(MultiXactId multi, uint16 infomask, LockTupleMode lockmode, bool *current_is_member)
Definition: heapam.c:7595
static XLogRecPtr log_heap_new_cid(Relation relation, HeapTuple tup)
Definition: heapam.c:9060
static void compute_new_xmax_infomask(TransactionId xmax, uint16 old_infomask, uint16 old_infomask2, TransactionId add_to_xmax, LockTupleMode mode, bool is_update, TransactionId *result_xmax, uint16 *result_infomask, uint16 *result_infomask2)
Definition: heapam.c:5326
static HeapTuple ExtractReplicaIdentity(Relation relation, HeapTuple tp, bool key_required, bool *copy)
Definition: heapam.c:9141
static bool heap_acquire_tuplock(Relation relation, ItemPointer tid, LockTupleMode mode, LockWaitPolicy wait_policy, bool *have_tuple_lock)
Definition: heapam.c:5277
static void MultiXactIdWait(MultiXactId multi, MultiXactStatus status, uint16 infomask, Relation rel, ItemPointer ctid, XLTW_Oper oper, int *remaining)
Definition: heapam.c:7773
static bool xmax_infomask_changed(uint16 new_infomask, uint16 old_infomask)
Definition: heapam.c:2755
#define UnlockTupleTuplock(rel, tup, mode)
Definition: heapam.c:164
static void AssertHasSnapshotForToast(Relation rel)
Definition: heapam.c:220
static void UpdateXmaxHintBits(HeapTupleHeader tuple, Buffer buffer, TransactionId xid)
Definition: heapam.c:1999
bool HeapTupleSatisfiesVisibility(HeapTuple htup, Snapshot snapshot, Buffer buffer)
bool HeapTupleHeaderIsOnlyLocked(HeapTupleHeader tuple)
TM_Result HeapTupleSatisfiesUpdate(HeapTuple htup, CommandId curcid, Buffer buffer)
#define XLH_DELETE_CONTAINS_OLD_KEY
Definition: heapam_xlog.h:104
#define XLH_DELETE_ALL_VISIBLE_CLEARED
Definition: heapam_xlog.h:102
#define SizeOfHeapHeader
Definition: heapam_xlog.h:157
#define XLH_DELETE_IS_PARTITION_MOVE
Definition: heapam_xlog.h:106
#define XLH_DELETE_CONTAINS_OLD_TUPLE
Definition: heapam_xlog.h:103
#define SizeofHeapTupleHeader
Definition: htup_details.h:185
static void HeapTupleHeaderSetCmax(HeapTupleHeaderData *tup, CommandId cid, bool iscombo)
Definition: htup_details.h:431
static void HeapTupleHeaderClearHotUpdated(HeapTupleHeaderData *tup)
Definition: htup_details.h:549
static TransactionId HeapTupleHeaderGetRawXmax(const HeapTupleHeaderData *tup)
Definition: htup_details.h:377
static TransactionId HeapTupleHeaderGetUpdateXid(const HeapTupleHeaderData *tup)
Definition: htup_details.h:397
static void HeapTupleHeaderSetMovedPartitions(HeapTupleHeaderData *tup)
Definition: htup_details.h:486
static void HeapTupleHeaderSetXmax(HeapTupleHeaderData *tup, TransactionId xid)
Definition: htup_details.h:383
void CacheInvalidateHeapTuple(Relation relation, HeapTuple tuple, HeapTuple newtuple)
Definition: inval.c:1571
bool ItemPointerEquals(ItemPointer pointer1, ItemPointer pointer2)
Definition: itemptr.c:35
@ XLTW_Delete
Definition: lmgr.h:28
void MultiXactIdSetOldestMember(void)
Definition: multixact.c:664
void CheckForSerializableConflictIn(Relation relation, ItemPointer tid, BlockNumber blkno)
Definition: predicate.c:4336
#define InvalidSnapshot
Definition: snapshot.h:119
TransactionId xmax
Definition: tableam.h:150
CommandId cmax
Definition: tableam.h:151
ItemPointerData ctid
Definition: tableam.h:149
uint16 t_infomask
Definition: heapam_xlog.h:153
uint16 t_infomask2
Definition: heapam_xlog.h:152
TM_Result
Definition: tableam.h:73
@ TM_Ok
Definition: tableam.h:78
@ TM_BeingModified
Definition: tableam.h:100
@ TM_Deleted
Definition: tableam.h:93
@ TM_Updated
Definition: tableam.h:90
@ TM_SelfModified
Definition: tableam.h:84
@ TM_Invisible
Definition: tableam.h:81
#define TransactionIdEquals(id1, id2)
Definition: transam.h:43
bool visibilitymap_clear(Relation rel, BlockNumber heapBlk, Buffer vmbuf, uint8 flags)
void visibilitymap_pin(Relation rel, BlockNumber heapBlk, Buffer *vmbuf)
#define VISIBILITYMAP_VALID_BITS
bool IsInParallelMode(void)
Definition: xact.c:1089
#define XLOG_INCLUDE_ORIGIN
Definition: xlog.h:154
void XLogSetRecordFlags(uint8 flags)
Definition: xloginsert.c:457

References Assert(), AssertHasSnapshotForToast(), BUFFER_LOCK_EXCLUSIVE, BUFFER_LOCK_UNLOCK, BufferGetBlockNumber(), BufferGetPage(), CacheInvalidateHeapTuple(), CheckForSerializableConflictIn(), TM_FailureData::cmax, compute_infobits(), compute_new_xmax_infomask(), TM_FailureData::ctid, DoesMultiXactIdConflict(), END_CRIT_SECTION, ereport, errcode(), errmsg(), ERROR, ExtractReplicaIdentity(), xl_heap_delete::flags, GetCurrentTransactionId(), heap_acquire_tuplock(), heap_freetuple(), HEAP_MOVED, heap_toast_delete(), HEAP_XMAX_BITS, HEAP_XMAX_INVALID, HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HeapTupleHasExternal(), HeapTupleHeaderAdjustCmax(), HeapTupleHeaderClearHotUpdated(), HeapTupleHeaderGetCmax(), HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderIsOnlyLocked(), HeapTupleHeaderSetCmax(), HeapTupleHeaderSetMovedPartitions(), HeapTupleHeaderSetXmax(), HeapTupleSatisfiesUpdate(), HeapTupleSatisfiesVisibility(), xl_heap_delete::infobits_set, InvalidBuffer, InvalidCommandId, InvalidSnapshot, IsInParallelMode(), ItemIdGetLength, ItemIdIsNormal, ItemPointerEquals(), ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), ItemPointerIsValid(), LockBuffer(), LockTupleExclusive, LockWaitBlock, log_heap_new_cid(), MarkBufferDirty(), MultiXactIdSetOldestMember(), MultiXactIdWait(), MultiXactStatusUpdate, xl_heap_delete::offnum, PageClearAllVisible(), PageGetItem(), PageGetItemId(), PageIsAllVisible(), PageSetLSN(), PageSetPrunable, pgstat_count_heap_delete(), RelationData::rd_rel, ReadBuffer(), REGBUF_STANDARD, RelationGetRelid, RelationIsAccessibleInLogicalDecoding, RelationNeedsWAL, ReleaseBuffer(), SizeOfHeapDelete, SizeOfHeapHeader, SizeofHeapTupleHeader, START_CRIT_SECTION, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, xl_heap_header::t_hoff, HeapTupleHeaderData::t_hoff, xl_heap_header::t_infomask, HeapTupleHeaderData::t_infomask, xl_heap_header::t_infomask2, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_self, HeapTupleData::t_tableOid, TM_BeingModified, TM_Deleted, TM_Invisible, TM_Ok, TM_SelfModified, TM_Updated, TransactionIdEquals, TransactionIdIsCurrentTransactionId(), UnlockReleaseBuffer(), UnlockTupleTuplock, UpdateXmaxHintBits(), visibilitymap_clear(), visibilitymap_pin(), VISIBILITYMAP_VALID_BITS, XactLockTableWait(), XLH_DELETE_ALL_VISIBLE_CLEARED, XLH_DELETE_CONTAINS_OLD_KEY, XLH_DELETE_CONTAINS_OLD_TUPLE, XLH_DELETE_IS_PARTITION_MOVE, XLOG_HEAP_DELETE, XLOG_INCLUDE_ORIGIN, XLogBeginInsert(), XLogInsert(), XLogRegisterBuffer(), XLogRegisterData(), XLogSetRecordFlags(), XLTW_Delete, xl_heap_delete::xmax, TM_FailureData::xmax, and xmax_infomask_changed().

Referenced by heapam_tuple_delete(), and simple_heap_delete().

◆ heap_endscan()

void heap_endscan ( TableScanDesc  sscan)

Definition at line 1307 of file heapam.c.

1308{
1309 HeapScanDesc scan = (HeapScanDesc) sscan;
1310
1311 /* Note: no locking manipulations needed */
1312
1313 /*
1314 * unpin scan buffers
1315 */
1316 if (BufferIsValid(scan->rs_cbuf))
1317 ReleaseBuffer(scan->rs_cbuf);
1318
1319 /*
1320 * Must free the read stream before freeing the BufferAccessStrategy.
1321 */
1322 if (scan->rs_read_stream)
1324
1325 /*
1326 * decrement relation reference count and free scan descriptor storage
1327 */
1329
1330 if (scan->rs_base.rs_key)
1331 pfree(scan->rs_base.rs_key);
1332
1333 if (scan->rs_strategy != NULL)
1335
1336 if (scan->rs_parallelworkerdata != NULL)
1338
1339 if (scan->rs_base.rs_flags & SO_TEMP_SNAPSHOT)
1341
1342 pfree(scan);
1343}
static bool BufferIsValid(Buffer bufnum)
Definition: bufmgr.h:369
void read_stream_end(ReadStream *stream)
Definition: read_stream.c:1089
void RelationDecrementReferenceCount(Relation rel)
Definition: relcache.c:2200
void UnregisterSnapshot(Snapshot snapshot)
Definition: snapmgr.c:864
@ SO_TEMP_SNAPSHOT
Definition: tableam.h:65

References BufferIsValid(), FreeAccessStrategy(), pfree(), read_stream_end(), RelationDecrementReferenceCount(), ReleaseBuffer(), HeapScanDescData::rs_base, HeapScanDescData::rs_cbuf, TableScanDescData::rs_flags, TableScanDescData::rs_key, HeapScanDescData::rs_parallelworkerdata, TableScanDescData::rs_rd, HeapScanDescData::rs_read_stream, TableScanDescData::rs_snapshot, HeapScanDescData::rs_strategy, SO_TEMP_SNAPSHOT, and UnregisterSnapshot().

◆ heap_fetch()

bool heap_fetch ( Relation  relation,
Snapshot  snapshot,
HeapTuple  tuple,
Buffer userbuf,
bool  keep_buf 
)

Definition at line 1605 of file heapam.c.

1610{
1611 ItemPointer tid = &(tuple->t_self);
1612 ItemId lp;
1613 Buffer buffer;
1614 Page page;
1615 OffsetNumber offnum;
1616 bool valid;
1617
1618 /*
1619 * Fetch and pin the appropriate page of the relation.
1620 */
1621 buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(tid));
1622
1623 /*
1624 * Need share lock on buffer to examine tuple commit status.
1625 */
1627 page = BufferGetPage(buffer);
1628
1629 /*
1630 * We'd better check for out-of-range offnum in case of VACUUM since the
1631 * TID was obtained.
1632 */
1633 offnum = ItemPointerGetOffsetNumber(tid);
1634 if (offnum < FirstOffsetNumber || offnum > PageGetMaxOffsetNumber(page))
1635 {
1637 ReleaseBuffer(buffer);
1638 *userbuf = InvalidBuffer;
1639 tuple->t_data = NULL;
1640 return false;
1641 }
1642
1643 /*
1644 * get the item line pointer corresponding to the requested tid
1645 */
1646 lp = PageGetItemId(page, offnum);
1647
1648 /*
1649 * Must check for deleted tuple.
1650 */
1651 if (!ItemIdIsNormal(lp))
1652 {
1654 ReleaseBuffer(buffer);
1655 *userbuf = InvalidBuffer;
1656 tuple->t_data = NULL;
1657 return false;
1658 }
1659
1660 /*
1661 * fill in *tuple fields
1662 */
1663 tuple->t_data = (HeapTupleHeader) PageGetItem(page, lp);
1664 tuple->t_len = ItemIdGetLength(lp);
1665 tuple->t_tableOid = RelationGetRelid(relation);
1666
1667 /*
1668 * check tuple visibility, then release lock
1669 */
1670 valid = HeapTupleSatisfiesVisibility(tuple, snapshot, buffer);
1671
1672 if (valid)
1673 PredicateLockTID(relation, &(tuple->t_self), snapshot,
1675
1676 HeapCheckForSerializableConflictOut(valid, relation, tuple, buffer, snapshot);
1677
1679
1680 if (valid)
1681 {
1682 /*
1683 * All checks passed, so return the tuple as valid. Caller is now
1684 * responsible for releasing the buffer.
1685 */
1686 *userbuf = buffer;
1687
1688 return true;
1689 }
1690
1691 /* Tuple failed time qual, but maybe caller wants to see it anyway. */
1692 if (keep_buf)
1693 *userbuf = buffer;
1694 else
1695 {
1696 ReleaseBuffer(buffer);
1697 *userbuf = InvalidBuffer;
1698 tuple->t_data = NULL;
1699 }
1700
1701 return false;
1702}
#define BUFFER_LOCK_SHARE
Definition: bufmgr.h:197
static OffsetNumber PageGetMaxOffsetNumber(const PageData *page)
Definition: bufpage.h:372
void HeapCheckForSerializableConflictOut(bool visible, Relation relation, HeapTuple tuple, Buffer buffer, Snapshot snapshot)
Definition: heapam.c:9245
static TransactionId HeapTupleHeaderGetXmin(const HeapTupleHeaderData *tup)
Definition: htup_details.h:324
uint16 OffsetNumber
Definition: off.h:24
void PredicateLockTID(Relation relation, ItemPointer tid, Snapshot snapshot, TransactionId tuple_xid)
Definition: predicate.c:2621

References BUFFER_LOCK_SHARE, BUFFER_LOCK_UNLOCK, BufferGetPage(), HeapCheckForSerializableConflictOut(), HeapTupleHeaderGetXmin(), HeapTupleSatisfiesVisibility(), InvalidBuffer, ItemIdGetLength, ItemIdIsNormal, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), LockBuffer(), PageGetItem(), PageGetItemId(), PageGetMaxOffsetNumber(), PredicateLockTID(), ReadBuffer(), RelationGetRelid, ReleaseBuffer(), HeapTupleData::t_data, HeapTupleData::t_len, HeapTupleData::t_self, and HeapTupleData::t_tableOid.

Referenced by heap_lock_updated_tuple_rec(), heapam_fetch_row_version(), and heapam_tuple_lock().

◆ heap_fetch_next_buffer()

static void heap_fetch_next_buffer ( HeapScanDesc  scan,
ScanDirection  dir 
)
inlinestatic

Definition at line 643 of file heapam.c.

644{
645 Assert(scan->rs_read_stream);
646
647 /* release previous scan buffer, if any */
648 if (BufferIsValid(scan->rs_cbuf))
649 {
650 ReleaseBuffer(scan->rs_cbuf);
651 scan->rs_cbuf = InvalidBuffer;
652 }
653
654 /*
655 * Be sure to check for interrupts at least once per page. Checks at
656 * higher code levels won't be able to stop a seqscan that encounters many
657 * pages' worth of consecutive dead tuples.
658 */
660
661 /*
662 * If the scan direction is changing, reset the prefetch block to the
663 * current block. Otherwise, we will incorrectly prefetch the blocks
664 * between the prefetch block and the current block again before
665 * prefetching blocks in the new, correct scan direction.
666 */
667 if (unlikely(scan->rs_dir != dir))
668 {
669 scan->rs_prefetch_block = scan->rs_cblock;
671 }
672
673 scan->rs_dir = dir;
674
676 if (BufferIsValid(scan->rs_cbuf))
678}
#define unlikely(x)
Definition: c.h:402
void read_stream_reset(ReadStream *stream)
Definition: read_stream.c:1044
Buffer read_stream_next_buffer(ReadStream *stream, void **per_buffer_data)
Definition: read_stream.c:791
ScanDirection rs_dir
Definition: heapam.h:88
BlockNumber rs_prefetch_block
Definition: heapam.h:89
BlockNumber rs_cblock
Definition: heapam.h:69

References Assert(), BufferGetBlockNumber(), BufferIsValid(), CHECK_FOR_INTERRUPTS, InvalidBuffer, read_stream_next_buffer(), read_stream_reset(), ReleaseBuffer(), HeapScanDescData::rs_cblock, HeapScanDescData::rs_cbuf, HeapScanDescData::rs_dir, HeapScanDescData::rs_prefetch_block, HeapScanDescData::rs_read_stream, and unlikely.

Referenced by heapgettup(), and heapgettup_pagemode().

◆ heap_finish_speculative()

void heap_finish_speculative ( Relation  relation,
ItemPointer  tid 
)

Definition at line 6088 of file heapam.c.

6089{
6090 Buffer buffer;
6091 Page page;
6092 OffsetNumber offnum;
6093 ItemId lp = NULL;
6094 HeapTupleHeader htup;
6095
6096 buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(tid));
6098 page = BufferGetPage(buffer);
6099
6100 offnum = ItemPointerGetOffsetNumber(tid);
6101 if (PageGetMaxOffsetNumber(page) >= offnum)
6102 lp = PageGetItemId(page, offnum);
6103
6104 if (PageGetMaxOffsetNumber(page) < offnum || !ItemIdIsNormal(lp))
6105 elog(ERROR, "invalid lp");
6106
6107 htup = (HeapTupleHeader) PageGetItem(page, lp);
6108
6109 /* NO EREPORT(ERROR) from here till changes are logged */
6111
6113
6114 MarkBufferDirty(buffer);
6115
6116 /*
6117 * Replace the speculative insertion token with a real t_ctid, pointing to
6118 * itself like it does on regular tuples.
6119 */
6120 htup->t_ctid = *tid;
6121
6122 /* XLOG stuff */
6123 if (RelationNeedsWAL(relation))
6124 {
6125 xl_heap_confirm xlrec;
6126 XLogRecPtr recptr;
6127
6129
6131
6132 /* We want the same filtering on this as on a plain insert */
6134
6137
6138 recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_CONFIRM);
6139
6140 PageSetLSN(page, recptr);
6141 }
6142
6144
6145 UnlockReleaseBuffer(buffer);
6146}
#define SizeOfHeapConfirm
Definition: heapam_xlog.h:422
#define XLOG_HEAP_CONFIRM
Definition: heapam_xlog.h:38
OffsetNumber offnum
Definition: heapam_xlog.h:419

References Assert(), BUFFER_LOCK_EXCLUSIVE, BufferGetPage(), elog, END_CRIT_SECTION, ERROR, HeapTupleHeaderIsSpeculative(), ItemIdIsNormal, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), LockBuffer(), MarkBufferDirty(), xl_heap_confirm::offnum, PageGetItem(), PageGetItemId(), PageGetMaxOffsetNumber(), PageSetLSN(), ReadBuffer(), REGBUF_STANDARD, RelationNeedsWAL, SizeOfHeapConfirm, START_CRIT_SECTION, HeapTupleHeaderData::t_ctid, UnlockReleaseBuffer(), XLOG_HEAP_CONFIRM, XLOG_INCLUDE_ORIGIN, XLogBeginInsert(), XLogInsert(), XLogRegisterBuffer(), XLogRegisterData(), and XLogSetRecordFlags().

Referenced by heapam_tuple_complete_speculative().

◆ heap_freeze_prepared_tuples()

void heap_freeze_prepared_tuples ( Buffer  buffer,
HeapTupleFreeze tuples,
int  ntuples 
)

Definition at line 7380 of file heapam.c.

7381{
7382 Page page = BufferGetPage(buffer);
7383
7384 for (int i = 0; i < ntuples; i++)
7385 {
7386 HeapTupleFreeze *frz = tuples + i;
7387 ItemId itemid = PageGetItemId(page, frz->offset);
7388 HeapTupleHeader htup;
7389
7390 htup = (HeapTupleHeader) PageGetItem(page, itemid);
7391 heap_execute_freeze_tuple(htup, frz);
7392 }
7393}
static void heap_execute_freeze_tuple(HeapTupleHeader tuple, HeapTupleFreeze *frz)
Definition: heapam.h:435
OffsetNumber offset
Definition: heapam.h:152

References BufferGetPage(), heap_execute_freeze_tuple(), i, HeapTupleFreeze::offset, PageGetItem(), and PageGetItemId().

Referenced by heap_page_prune_and_freeze().

◆ heap_freeze_tuple()

bool heap_freeze_tuple ( HeapTupleHeader  tuple,
TransactionId  relfrozenxid,
TransactionId  relminmxid,
TransactionId  FreezeLimit,
TransactionId  MultiXactCutoff 
)

Definition at line 7402 of file heapam.c.

7405{
7406 HeapTupleFreeze frz;
7407 bool do_freeze;
7408 bool totally_frozen;
7409 struct VacuumCutoffs cutoffs;
7410 HeapPageFreeze pagefrz;
7411
7412 cutoffs.relfrozenxid = relfrozenxid;
7413 cutoffs.relminmxid = relminmxid;
7414 cutoffs.OldestXmin = FreezeLimit;
7415 cutoffs.OldestMxact = MultiXactCutoff;
7416 cutoffs.FreezeLimit = FreezeLimit;
7417 cutoffs.MultiXactCutoff = MultiXactCutoff;
7418
7419 pagefrz.freeze_required = true;
7420 pagefrz.FreezePageRelfrozenXid = FreezeLimit;
7421 pagefrz.FreezePageRelminMxid = MultiXactCutoff;
7422 pagefrz.NoFreezePageRelfrozenXid = FreezeLimit;
7423 pagefrz.NoFreezePageRelminMxid = MultiXactCutoff;
7424
7425 do_freeze = heap_prepare_freeze_tuple(tuple, &cutoffs,
7426 &pagefrz, &frz, &totally_frozen);
7427
7428 /*
7429 * Note that because this is not a WAL-logged operation, we don't need to
7430 * fill in the offset in the freeze record.
7431 */
7432
7433 if (do_freeze)
7434 heap_execute_freeze_tuple(tuple, &frz);
7435 return do_freeze;
7436}
bool heap_prepare_freeze_tuple(HeapTupleHeader tuple, const struct VacuumCutoffs *cutoffs, HeapPageFreeze *pagefrz, HeapTupleFreeze *frz, bool *totally_frozen)
Definition: heapam.c:7054

References VacuumCutoffs::FreezeLimit, heap_execute_freeze_tuple(), heap_prepare_freeze_tuple(), VacuumCutoffs::MultiXactCutoff, VacuumCutoffs::OldestMxact, VacuumCutoffs::OldestXmin, VacuumCutoffs::relfrozenxid, and VacuumCutoffs::relminmxid.

Referenced by rewrite_heap_tuple().

◆ heap_get_latest_tid()

void heap_get_latest_tid ( TableScanDesc  sscan,
ItemPointer  tid 
)

Definition at line 1877 of file heapam.c.

1879{
1880 Relation relation = sscan->rs_rd;
1881 Snapshot snapshot = sscan->rs_snapshot;
1882 ItemPointerData ctid;
1883 TransactionId priorXmax;
1884
1885 /*
1886 * table_tuple_get_latest_tid() verified that the passed in tid is valid.
1887 * Assume that t_ctid links are valid however - there shouldn't be invalid
1888 * ones in the table.
1889 */
1891
1892 /*
1893 * Loop to chase down t_ctid links. At top of loop, ctid is the tuple we
1894 * need to examine, and *tid is the TID we will return if ctid turns out
1895 * to be bogus.
1896 *
1897 * Note that we will loop until we reach the end of the t_ctid chain.
1898 * Depending on the snapshot passed, there might be at most one visible
1899 * version of the row, but we don't try to optimize for that.
1900 */
1901 ctid = *tid;
1902 priorXmax = InvalidTransactionId; /* cannot check first XMIN */
1903 for (;;)
1904 {
1905 Buffer buffer;
1906 Page page;
1907 OffsetNumber offnum;
1908 ItemId lp;
1909 HeapTupleData tp;
1910 bool valid;
1911
1912 /*
1913 * Read, pin, and lock the page.
1914 */
1915 buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(&ctid));
1917 page = BufferGetPage(buffer);
1918
1919 /*
1920 * Check for bogus item number. This is not treated as an error
1921 * condition because it can happen while following a t_ctid link. We
1922 * just assume that the prior tid is OK and return it unchanged.
1923 */
1924 offnum = ItemPointerGetOffsetNumber(&ctid);
1925 if (offnum < FirstOffsetNumber || offnum > PageGetMaxOffsetNumber(page))
1926 {
1927 UnlockReleaseBuffer(buffer);
1928 break;
1929 }
1930 lp = PageGetItemId(page, offnum);
1931 if (!ItemIdIsNormal(lp))
1932 {
1933 UnlockReleaseBuffer(buffer);
1934 break;
1935 }
1936
1937 /* OK to access the tuple */
1938 tp.t_self = ctid;
1939 tp.t_data = (HeapTupleHeader) PageGetItem(page, lp);
1940 tp.t_len = ItemIdGetLength(lp);
1941 tp.t_tableOid = RelationGetRelid(relation);
1942
1943 /*
1944 * After following a t_ctid link, we might arrive at an unrelated
1945 * tuple. Check for XMIN match.
1946 */
1947 if (TransactionIdIsValid(priorXmax) &&
1949 {
1950 UnlockReleaseBuffer(buffer);
1951 break;
1952 }
1953
1954 /*
1955 * Check tuple visibility; if visible, set it as the new result
1956 * candidate.
1957 */
1958 valid = HeapTupleSatisfiesVisibility(&tp, snapshot, buffer);
1959 HeapCheckForSerializableConflictOut(valid, relation, &tp, buffer, snapshot);
1960 if (valid)
1961 *tid = ctid;
1962
1963 /*
1964 * If there's a valid t_ctid link, follow it, else we're done.
1965 */
1966 if ((tp.t_data->t_infomask & HEAP_XMAX_INVALID) ||
1970 {
1971 UnlockReleaseBuffer(buffer);
1972 break;
1973 }
1974
1975 ctid = tp.t_data->t_ctid;
1976 priorXmax = HeapTupleHeaderGetUpdateXid(tp.t_data);
1977 UnlockReleaseBuffer(buffer);
1978 } /* end of loop */
1979}
static bool HeapTupleHeaderIndicatesMovedPartitions(const HeapTupleHeaderData *tup)
Definition: htup_details.h:480

References Assert(), BUFFER_LOCK_SHARE, BufferGetPage(), HEAP_XMAX_INVALID, HeapCheckForSerializableConflictOut(), HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderGetXmin(), HeapTupleHeaderIndicatesMovedPartitions(), HeapTupleHeaderIsOnlyLocked(), HeapTupleSatisfiesVisibility(), InvalidTransactionId, ItemIdGetLength, ItemIdIsNormal, ItemPointerEquals(), ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), ItemPointerIsValid(), LockBuffer(), PageGetItem(), PageGetItemId(), PageGetMaxOffsetNumber(), ReadBuffer(), RelationGetRelid, TableScanDescData::rs_rd, TableScanDescData::rs_snapshot, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, HeapTupleHeaderData::t_infomask, HeapTupleData::t_len, HeapTupleData::t_self, HeapTupleData::t_tableOid, TransactionIdEquals, TransactionIdIsValid, and UnlockReleaseBuffer().

◆ heap_getnext()

HeapTuple heap_getnext ( TableScanDesc  sscan,
ScanDirection  direction 
)

Definition at line 1346 of file heapam.c.

1347{
1348 HeapScanDesc scan = (HeapScanDesc) sscan;
1349
1350 /*
1351 * This is still widely used directly, without going through table AM, so
1352 * add a safety check. It's possible we should, at a later point,
1353 * downgrade this to an assert. The reason for checking the AM routine,
1354 * rather than the AM oid, is that this allows to write regression tests
1355 * that create another AM reusing the heap handler.
1356 */
1358 ereport(ERROR,
1359 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1360 errmsg_internal("only heap AM is supported")));
1361
1362 /*
1363 * We don't expect direct calls to heap_getnext with valid CheckXidAlive
1364 * for catalog or regular tables. See detailed comments in xact.c where
1365 * these variables are declared. Normally we have such a check at tableam
1366 * level API but this is called from many places so we need to ensure it
1367 * here.
1368 */
1370 elog(ERROR, "unexpected heap_getnext call during logical decoding");
1371
1372 /* Note: no locking manipulations needed */
1373
1375 heapgettup_pagemode(scan, direction,
1376 scan->rs_base.rs_nkeys, scan->rs_base.rs_key);
1377 else
1378 heapgettup(scan, direction,
1379 scan->rs_base.rs_nkeys, scan->rs_base.rs_key);
1380
1381 if (scan->rs_ctup.t_data == NULL)
1382 return NULL;
1383
1384 /*
1385 * if we get here it means we have a new current scan tuple, so point to
1386 * the proper return buffer and return the tuple.
1387 */
1388
1390
1391 return &scan->rs_ctup;
1392}
static void heapgettup(HeapScanDesc scan, ScanDirection dir, int nkeys, ScanKey key)
Definition: heapam.c:896
static void heapgettup_pagemode(HeapScanDesc scan, ScanDirection dir, int nkeys, ScanKey key)
Definition: heapam.c:1006
const TableAmRoutine * GetHeapamTableAmRoutine(void)
#define pgstat_count_heap_getnext(rel)
Definition: pgstat.h:689
const struct TableAmRoutine * rd_tableam
Definition: rel.h:189
@ SO_ALLOW_PAGEMODE
Definition: tableam.h:62
bool bsysscan
Definition: xact.c:100
TransactionId CheckXidAlive
Definition: xact.c:99

References bsysscan, CheckXidAlive, elog, ereport, errcode(), errmsg_internal(), ERROR, GetHeapamTableAmRoutine(), heapgettup(), heapgettup_pagemode(), pgstat_count_heap_getnext, RelationData::rd_tableam, HeapScanDescData::rs_base, HeapScanDescData::rs_ctup, TableScanDescData::rs_flags, TableScanDescData::rs_key, TableScanDescData::rs_nkeys, TableScanDescData::rs_rd, SO_ALLOW_PAGEMODE, HeapTupleData::t_data, TransactionIdIsValid, and unlikely.

Referenced by AlterTableMoveAll(), AlterTableSpaceOptions(), check_db_file_conflict(), CreateDatabaseUsingFileCopy(), do_autovacuum(), DropSetting(), DropTableSpace(), find_typed_table_dependencies(), get_all_vacuum_rels(), get_database_list(), get_subscription_list(), get_tables_to_cluster(), get_tablespace_name(), get_tablespace_oid(), GetAllTablesPublicationRelations(), getRelationsInNamespace(), GetSchemaPublicationRelations(), heapam_index_build_range_scan(), heapam_index_validate_scan(), objectsInSchemaToOids(), pgrowlocks(), pgstat_heap(), populate_typ_list(), ReindexMultipleTables(), remove_dbtablespaces(), RemoveSubscriptionRel(), RenameTableSpace(), ThereIsAtLeastOneRole(), and vac_truncate_clog().

◆ heap_getnextslot()

bool heap_getnextslot ( TableScanDesc  sscan,
ScanDirection  direction,
TupleTableSlot slot 
)

Definition at line 1395 of file heapam.c.

1396{
1397 HeapScanDesc scan = (HeapScanDesc) sscan;
1398
1399 /* Note: no locking manipulations needed */
1400
1401 if (sscan->rs_flags & SO_ALLOW_PAGEMODE)
1402 heapgettup_pagemode(scan, direction, sscan->rs_nkeys, sscan->rs_key);
1403 else
1404 heapgettup(scan, direction, sscan->rs_nkeys, sscan->rs_key);
1405
1406 if (scan->rs_ctup.t_data == NULL)
1407 {
1408 ExecClearTuple(slot);
1409 return false;
1410 }
1411
1412 /*
1413 * if we get here it means we have a new current scan tuple, so point to
1414 * the proper return buffer and return the tuple.
1415 */
1416
1418
1419 ExecStoreBufferHeapTuple(&scan->rs_ctup, slot,
1420 scan->rs_cbuf);
1421 return true;
1422}
TupleTableSlot * ExecStoreBufferHeapTuple(HeapTuple tuple, TupleTableSlot *slot, Buffer buffer)
Definition: execTuples.c:1581
static TupleTableSlot * ExecClearTuple(TupleTableSlot *slot)
Definition: tuptable.h:457

References ExecClearTuple(), ExecStoreBufferHeapTuple(), heapgettup(), heapgettup_pagemode(), pgstat_count_heap_getnext, HeapScanDescData::rs_base, HeapScanDescData::rs_cbuf, HeapScanDescData::rs_ctup, TableScanDescData::rs_flags, TableScanDescData::rs_key, TableScanDescData::rs_nkeys, TableScanDescData::rs_rd, SO_ALLOW_PAGEMODE, and HeapTupleData::t_data.

◆ heap_getnextslot_tidrange()

bool heap_getnextslot_tidrange ( TableScanDesc  sscan,
ScanDirection  direction,
TupleTableSlot slot 
)

Definition at line 1498 of file heapam.c.

1500{
1501 HeapScanDesc scan = (HeapScanDesc) sscan;
1502 ItemPointer mintid = &sscan->st.tidrange.rs_mintid;
1503 ItemPointer maxtid = &sscan->st.tidrange.rs_maxtid;
1504
1505 /* Note: no locking manipulations needed */
1506 for (;;)
1507 {
1508 if (sscan->rs_flags & SO_ALLOW_PAGEMODE)
1509 heapgettup_pagemode(scan, direction, sscan->rs_nkeys, sscan->rs_key);
1510 else
1511 heapgettup(scan, direction, sscan->rs_nkeys, sscan->rs_key);
1512
1513 if (scan->rs_ctup.t_data == NULL)
1514 {
1515 ExecClearTuple(slot);
1516 return false;
1517 }
1518
1519 /*
1520 * heap_set_tidrange will have used heap_setscanlimits to limit the
1521 * range of pages we scan to only ones that can contain the TID range
1522 * we're scanning for. Here we must filter out any tuples from these
1523 * pages that are outside of that range.
1524 */
1525 if (ItemPointerCompare(&scan->rs_ctup.t_self, mintid) < 0)
1526 {
1527 ExecClearTuple(slot);
1528
1529 /*
1530 * When scanning backwards, the TIDs will be in descending order.
1531 * Future tuples in this direction will be lower still, so we can
1532 * just return false to indicate there will be no more tuples.
1533 */
1534 if (ScanDirectionIsBackward(direction))
1535 return false;
1536
1537 continue;
1538 }
1539
1540 /*
1541 * Likewise for the final page, we must filter out TIDs greater than
1542 * maxtid.
1543 */
1544 if (ItemPointerCompare(&scan->rs_ctup.t_self, maxtid) > 0)
1545 {
1546 ExecClearTuple(slot);
1547
1548 /*
1549 * When scanning forward, the TIDs will be in ascending order.
1550 * Future tuples in this direction will be higher still, so we can
1551 * just return false to indicate there will be no more tuples.
1552 */
1553 if (ScanDirectionIsForward(direction))
1554 return false;
1555 continue;
1556 }
1557
1558 break;
1559 }
1560
1561 /*
1562 * if we get here it means we have a new current scan tuple, so point to
1563 * the proper return buffer and return the tuple.
1564 */
1566
1567 ExecStoreBufferHeapTuple(&scan->rs_ctup, slot, scan->rs_cbuf);
1568 return true;
1569}
int32 ItemPointerCompare(ItemPointer arg1, ItemPointer arg2)
Definition: itemptr.c:51
#define ScanDirectionIsForward(direction)
Definition: sdir.h:64
#define ScanDirectionIsBackward(direction)
Definition: sdir.h:50
struct TableScanDescData::@50::@51 tidrange
ItemPointerData rs_mintid
Definition: relscan.h:55
ItemPointerData rs_maxtid
Definition: relscan.h:56

References ExecClearTuple(), ExecStoreBufferHeapTuple(), heapgettup(), heapgettup_pagemode(), ItemPointerCompare(), pgstat_count_heap_getnext, HeapScanDescData::rs_base, HeapScanDescData::rs_cbuf, HeapScanDescData::rs_ctup, TableScanDescData::rs_flags, TableScanDescData::rs_key, TableScanDescData::rs_maxtid, TableScanDescData::rs_mintid, TableScanDescData::rs_nkeys, TableScanDescData::rs_rd, ScanDirectionIsBackward, ScanDirectionIsForward, SO_ALLOW_PAGEMODE, TableScanDescData::st, HeapTupleData::t_data, HeapTupleData::t_self, and TableScanDescData::tidrange.

◆ heap_hot_search_buffer()

bool heap_hot_search_buffer ( ItemPointer  tid,
Relation  relation,
Buffer  buffer,
Snapshot  snapshot,
HeapTuple  heapTuple,
bool *  all_dead,
bool  first_call 
)

Definition at line 1725 of file heapam.c.

1728{
1729 Page page = BufferGetPage(buffer);
1731 BlockNumber blkno;
1732 OffsetNumber offnum;
1733 bool at_chain_start;
1734 bool valid;
1735 bool skip;
1736 GlobalVisState *vistest = NULL;
1737
1738 /* If this is not the first call, previous call returned a (live!) tuple */
1739 if (all_dead)
1740 *all_dead = first_call;
1741
1742 blkno = ItemPointerGetBlockNumber(tid);
1743 offnum = ItemPointerGetOffsetNumber(tid);
1744 at_chain_start = first_call;
1745 skip = !first_call;
1746
1747 /* XXX: we should assert that a snapshot is pushed or registered */
1749 Assert(BufferGetBlockNumber(buffer) == blkno);
1750
1751 /* Scan through possible multiple members of HOT-chain */
1752 for (;;)
1753 {
1754 ItemId lp;
1755
1756 /* check for bogus TID */
1757 if (offnum < FirstOffsetNumber || offnum > PageGetMaxOffsetNumber(page))
1758 break;
1759
1760 lp = PageGetItemId(page, offnum);
1761
1762 /* check for unused, dead, or redirected items */
1763 if (!ItemIdIsNormal(lp))
1764 {
1765 /* We should only see a redirect at start of chain */
1766 if (ItemIdIsRedirected(lp) && at_chain_start)
1767 {
1768 /* Follow the redirect */
1769 offnum = ItemIdGetRedirect(lp);
1770 at_chain_start = false;
1771 continue;
1772 }
1773 /* else must be end of chain */
1774 break;
1775 }
1776
1777 /*
1778 * Update heapTuple to point to the element of the HOT chain we're
1779 * currently investigating. Having t_self set correctly is important
1780 * because the SSI checks and the *Satisfies routine for historical
1781 * MVCC snapshots need the correct tid to decide about the visibility.
1782 */
1783 heapTuple->t_data = (HeapTupleHeader) PageGetItem(page, lp);
1784 heapTuple->t_len = ItemIdGetLength(lp);
1785 heapTuple->t_tableOid = RelationGetRelid(relation);
1786 ItemPointerSet(&heapTuple->t_self, blkno, offnum);
1787
1788 /*
1789 * Shouldn't see a HEAP_ONLY tuple at chain start.
1790 */
1791 if (at_chain_start && HeapTupleIsHeapOnly(heapTuple))
1792 break;
1793
1794 /*
1795 * The xmin should match the previous xmax value, else chain is
1796 * broken.
1797 */
1798 if (TransactionIdIsValid(prev_xmax) &&
1799 !TransactionIdEquals(prev_xmax,
1800 HeapTupleHeaderGetXmin(heapTuple->t_data)))
1801 break;
1802
1803 /*
1804 * When first_call is true (and thus, skip is initially false) we'll
1805 * return the first tuple we find. But on later passes, heapTuple
1806 * will initially be pointing to the tuple we returned last time.
1807 * Returning it again would be incorrect (and would loop forever), so
1808 * we skip it and return the next match we find.
1809 */
1810 if (!skip)
1811 {
1812 /* If it's visible per the snapshot, we must return it */
1813 valid = HeapTupleSatisfiesVisibility(heapTuple, snapshot, buffer);
1814 HeapCheckForSerializableConflictOut(valid, relation, heapTuple,
1815 buffer, snapshot);
1816
1817 if (valid)
1818 {
1819 ItemPointerSetOffsetNumber(tid, offnum);
1820 PredicateLockTID(relation, &heapTuple->t_self, snapshot,
1821 HeapTupleHeaderGetXmin(heapTuple->t_data));
1822 if (all_dead)
1823 *all_dead = false;
1824 return true;
1825 }
1826 }
1827 skip = false;
1828
1829 /*
1830 * If we can't see it, maybe no one else can either. At caller
1831 * request, check whether all chain members are dead to all
1832 * transactions.
1833 *
1834 * Note: if you change the criterion here for what is "dead", fix the
1835 * planner's get_actual_variable_range() function to match.
1836 */
1837 if (all_dead && *all_dead)
1838 {
1839 if (!vistest)
1840 vistest = GlobalVisTestFor(relation);
1841
1842 if (!HeapTupleIsSurelyDead(heapTuple, vistest))
1843 *all_dead = false;
1844 }
1845
1846 /*
1847 * Check to see if HOT chain continues past this tuple; if so fetch
1848 * the next offnum and loop around.
1849 */
1850 if (HeapTupleIsHotUpdated(heapTuple))
1851 {
1853 blkno);
1854 offnum = ItemPointerGetOffsetNumber(&heapTuple->t_data->t_ctid);
1855 at_chain_start = false;
1856 prev_xmax = HeapTupleHeaderGetUpdateXid(heapTuple->t_data);
1857 }
1858 else
1859 break; /* end of chain */
1860 }
1861
1862 return false;
1863}
bool HeapTupleIsSurelyDead(HeapTuple htup, GlobalVisState *vistest)
static bool HeapTupleIsHotUpdated(const HeapTupleData *tuple)
Definition: htup_details.h:768
static bool HeapTupleIsHeapOnly(const HeapTupleData *tuple)
Definition: htup_details.h:786
#define ItemIdGetRedirect(itemId)
Definition: itemid.h:78
#define ItemIdIsRedirected(itemId)
Definition: itemid.h:106
static void ItemPointerSet(ItemPointerData *pointer, BlockNumber blockNumber, OffsetNumber offNum)
Definition: itemptr.h:135
static void ItemPointerSetOffsetNumber(ItemPointerData *pointer, OffsetNumber offsetNumber)
Definition: itemptr.h:158
static const struct exclude_list_item skip[]
Definition: pg_checksums.c:107
GlobalVisState * GlobalVisTestFor(Relation rel)
Definition: procarray.c:4069
TransactionId RecentXmin
Definition: snapmgr.c:159

References Assert(), BufferGetBlockNumber(), BufferGetPage(), GlobalVisTestFor(), HeapCheckForSerializableConflictOut(), HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderGetXmin(), HeapTupleIsHeapOnly(), HeapTupleIsHotUpdated(), HeapTupleIsSurelyDead(), HeapTupleSatisfiesVisibility(), InvalidTransactionId, ItemIdGetLength, ItemIdGetRedirect, ItemIdIsNormal, ItemIdIsRedirected, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), ItemPointerSet(), ItemPointerSetOffsetNumber(), PageGetItem(), PageGetItemId(), PageGetMaxOffsetNumber(), PredicateLockTID(), RecentXmin, RelationGetRelid, skip, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, HeapTupleData::t_len, HeapTupleData::t_self, HeapTupleData::t_tableOid, TransactionIdEquals, and TransactionIdIsValid.

Referenced by BitmapHeapScanNextBlock(), heap_index_delete_tuples(), and heapam_index_fetch_tuple().

◆ heap_index_delete_tuples()

TransactionId heap_index_delete_tuples ( Relation  rel,
TM_IndexDeleteOp delstate 
)

Definition at line 8118 of file heapam.c.

8119{
8120 /* Initial assumption is that earlier pruning took care of conflict */
8121 TransactionId snapshotConflictHorizon = InvalidTransactionId;
8124 Page page = NULL;
8126 TransactionId priorXmax;
8127#ifdef USE_PREFETCH
8128 IndexDeletePrefetchState prefetch_state;
8129 int prefetch_distance;
8130#endif
8131 SnapshotData SnapshotNonVacuumable;
8132 int finalndeltids = 0,
8133 nblocksaccessed = 0;
8134
8135 /* State that's only used in bottom-up index deletion case */
8136 int nblocksfavorable = 0;
8137 int curtargetfreespace = delstate->bottomupfreespace,
8138 lastfreespace = 0,
8139 actualfreespace = 0;
8140 bool bottomup_final_block = false;
8141
8142 InitNonVacuumableSnapshot(SnapshotNonVacuumable, GlobalVisTestFor(rel));
8143
8144 /* Sort caller's deltids array by TID for further processing */
8145 index_delete_sort(delstate);
8146
8147 /*
8148 * Bottom-up case: resort deltids array in an order attuned to where the
8149 * greatest number of promising TIDs are to be found, and determine how
8150 * many blocks from the start of sorted array should be considered
8151 * favorable. This will also shrink the deltids array in order to
8152 * eliminate completely unfavorable blocks up front.
8153 */
8154 if (delstate->bottomup)
8155 nblocksfavorable = bottomup_sort_and_shrink(delstate);
8156
8157#ifdef USE_PREFETCH
8158 /* Initialize prefetch state. */
8159 prefetch_state.cur_hblkno = InvalidBlockNumber;
8160 prefetch_state.next_item = 0;
8161 prefetch_state.ndeltids = delstate->ndeltids;
8162 prefetch_state.deltids = delstate->deltids;
8163
8164 /*
8165 * Determine the prefetch distance that we will attempt to maintain.
8166 *
8167 * Since the caller holds a buffer lock somewhere in rel, we'd better make
8168 * sure that isn't a catalog relation before we call code that does
8169 * syscache lookups, to avoid risk of deadlock.
8170 */
8171 if (IsCatalogRelation(rel))
8172 prefetch_distance = maintenance_io_concurrency;
8173 else
8174 prefetch_distance =
8176
8177 /* Cap initial prefetch distance for bottom-up deletion caller */
8178 if (delstate->bottomup)
8179 {
8180 Assert(nblocksfavorable >= 1);
8181 Assert(nblocksfavorable <= BOTTOMUP_MAX_NBLOCKS);
8182 prefetch_distance = Min(prefetch_distance, nblocksfavorable);
8183 }
8184
8185 /* Start prefetching. */
8186 index_delete_prefetch_buffer(rel, &prefetch_state, prefetch_distance);
8187#endif
8188
8189 /* Iterate over deltids, determine which to delete, check their horizon */
8190 Assert(delstate->ndeltids > 0);
8191 for (int i = 0; i < delstate->ndeltids; i++)
8192 {
8193 TM_IndexDelete *ideltid = &delstate->deltids[i];
8194 TM_IndexStatus *istatus = delstate->status + ideltid->id;
8195 ItemPointer htid = &ideltid->tid;
8196 OffsetNumber offnum;
8197
8198 /*
8199 * Read buffer, and perform required extra steps each time a new block
8200 * is encountered. Avoid refetching if it's the same block as the one
8201 * from the last htid.
8202 */
8203 if (blkno == InvalidBlockNumber ||
8204 ItemPointerGetBlockNumber(htid) != blkno)
8205 {
8206 /*
8207 * Consider giving up early for bottom-up index deletion caller
8208 * first. (Only prefetch next-next block afterwards, when it
8209 * becomes clear that we're at least going to access the next
8210 * block in line.)
8211 *
8212 * Sometimes the first block frees so much space for bottom-up
8213 * caller that the deletion process can end without accessing any
8214 * more blocks. It is usually necessary to access 2 or 3 blocks
8215 * per bottom-up deletion operation, though.
8216 */
8217 if (delstate->bottomup)
8218 {
8219 /*
8220 * We often allow caller to delete a few additional items
8221 * whose entries we reached after the point that space target
8222 * from caller was satisfied. The cost of accessing the page
8223 * was already paid at that point, so it made sense to finish
8224 * it off. When that happened, we finalize everything here
8225 * (by finishing off the whole bottom-up deletion operation
8226 * without needlessly paying the cost of accessing any more
8227 * blocks).
8228 */
8229 if (bottomup_final_block)
8230 break;
8231
8232 /*
8233 * Give up when we didn't enable our caller to free any
8234 * additional space as a result of processing the page that we
8235 * just finished up with. This rule is the main way in which
8236 * we keep the cost of bottom-up deletion under control.
8237 */
8238 if (nblocksaccessed >= 1 && actualfreespace == lastfreespace)
8239 break;
8240 lastfreespace = actualfreespace; /* for next time */
8241
8242 /*
8243 * Deletion operation (which is bottom-up) will definitely
8244 * access the next block in line. Prepare for that now.
8245 *
8246 * Decay target free space so that we don't hang on for too
8247 * long with a marginal case. (Space target is only truly
8248 * helpful when it allows us to recognize that we don't need
8249 * to access more than 1 or 2 blocks to satisfy caller due to
8250 * agreeable workload characteristics.)
8251 *
8252 * We are a bit more patient when we encounter contiguous
8253 * blocks, though: these are treated as favorable blocks. The
8254 * decay process is only applied when the next block in line
8255 * is not a favorable/contiguous block. This is not an
8256 * exception to the general rule; we still insist on finding
8257 * at least one deletable item per block accessed. See
8258 * bottomup_nblocksfavorable() for full details of the theory
8259 * behind favorable blocks and heap block locality in general.
8260 *
8261 * Note: The first block in line is always treated as a
8262 * favorable block, so the earliest possible point that the
8263 * decay can be applied is just before we access the second
8264 * block in line. The Assert() verifies this for us.
8265 */
8266 Assert(nblocksaccessed > 0 || nblocksfavorable > 0);
8267 if (nblocksfavorable > 0)
8268 nblocksfavorable--;
8269 else
8270 curtargetfreespace /= 2;
8271 }
8272
8273 /* release old buffer */
8274 if (BufferIsValid(buf))
8276
8277 blkno = ItemPointerGetBlockNumber(htid);
8278 buf = ReadBuffer(rel, blkno);
8279 nblocksaccessed++;
8280 Assert(!delstate->bottomup ||
8281 nblocksaccessed <= BOTTOMUP_MAX_NBLOCKS);
8282
8283#ifdef USE_PREFETCH
8284
8285 /*
8286 * To maintain the prefetch distance, prefetch one more page for
8287 * each page we read.
8288 */
8289 index_delete_prefetch_buffer(rel, &prefetch_state, 1);
8290#endif
8291
8293
8294 page = BufferGetPage(buf);
8295 maxoff = PageGetMaxOffsetNumber(page);
8296 }
8297
8298 /*
8299 * In passing, detect index corruption involving an index page with a
8300 * TID that points to a location in the heap that couldn't possibly be
8301 * correct. We only do this with actual TIDs from caller's index page
8302 * (not items reached by traversing through a HOT chain).
8303 */
8304 index_delete_check_htid(delstate, page, maxoff, htid, istatus);
8305
8306 if (istatus->knowndeletable)
8307 Assert(!delstate->bottomup && !istatus->promising);
8308 else
8309 {
8310 ItemPointerData tmp = *htid;
8311 HeapTupleData heapTuple;
8312
8313 /* Are any tuples from this HOT chain non-vacuumable? */
8314 if (heap_hot_search_buffer(&tmp, rel, buf, &SnapshotNonVacuumable,
8315 &heapTuple, NULL, true))
8316 continue; /* can't delete entry */
8317
8318 /* Caller will delete, since whole HOT chain is vacuumable */
8319 istatus->knowndeletable = true;
8320
8321 /* Maintain index free space info for bottom-up deletion case */
8322 if (delstate->bottomup)
8323 {
8324 Assert(istatus->freespace > 0);
8325 actualfreespace += istatus->freespace;
8326 if (actualfreespace >= curtargetfreespace)
8327 bottomup_final_block = true;
8328 }
8329 }
8330
8331 /*
8332 * Maintain snapshotConflictHorizon value for deletion operation as a
8333 * whole by advancing current value using heap tuple headers. This is
8334 * loosely based on the logic for pruning a HOT chain.
8335 */
8336 offnum = ItemPointerGetOffsetNumber(htid);
8337 priorXmax = InvalidTransactionId; /* cannot check first XMIN */
8338 for (;;)
8339 {
8340 ItemId lp;
8341 HeapTupleHeader htup;
8342
8343 /* Sanity check (pure paranoia) */
8344 if (offnum < FirstOffsetNumber)
8345 break;
8346
8347 /*
8348 * An offset past the end of page's line pointer array is possible
8349 * when the array was truncated
8350 */
8351 if (offnum > maxoff)
8352 break;
8353
8354 lp = PageGetItemId(page, offnum);
8355 if (ItemIdIsRedirected(lp))
8356 {
8357 offnum = ItemIdGetRedirect(lp);
8358 continue;
8359 }
8360
8361 /*
8362 * We'll often encounter LP_DEAD line pointers (especially with an
8363 * entry marked knowndeletable by our caller up front). No heap
8364 * tuple headers get examined for an htid that leads us to an
8365 * LP_DEAD item. This is okay because the earlier pruning
8366 * operation that made the line pointer LP_DEAD in the first place
8367 * must have considered the original tuple header as part of
8368 * generating its own snapshotConflictHorizon value.
8369 *
8370 * Relying on XLOG_HEAP2_PRUNE_VACUUM_SCAN records like this is
8371 * the same strategy that index vacuuming uses in all cases. Index
8372 * VACUUM WAL records don't even have a snapshotConflictHorizon
8373 * field of their own for this reason.
8374 */
8375 if (!ItemIdIsNormal(lp))
8376 break;
8377
8378 htup = (HeapTupleHeader) PageGetItem(page, lp);
8379
8380 /*
8381 * Check the tuple XMIN against prior XMAX, if any
8382 */
8383 if (TransactionIdIsValid(priorXmax) &&
8385 break;
8386
8388 &snapshotConflictHorizon);
8389
8390 /*
8391 * If the tuple is not HOT-updated, then we are at the end of this
8392 * HOT-chain. No need to visit later tuples from the same update
8393 * chain (they get their own index entries) -- just move on to
8394 * next htid from index AM caller.
8395 */
8396 if (!HeapTupleHeaderIsHotUpdated(htup))
8397 break;
8398
8399 /* Advance to next HOT chain member */
8400 Assert(ItemPointerGetBlockNumber(&htup->t_ctid) == blkno);
8401 offnum = ItemPointerGetOffsetNumber(&htup->t_ctid);
8402 priorXmax = HeapTupleHeaderGetUpdateXid(htup);
8403 }
8404
8405 /* Enable further/final shrinking of deltids for caller */
8406 finalndeltids = i + 1;
8407 }
8408
8410
8411 /*
8412 * Shrink deltids array to exclude non-deletable entries at the end. This
8413 * is not just a minor optimization. Final deltids array size might be
8414 * zero for a bottom-up caller. Index AM is explicitly allowed to rely on
8415 * ndeltids being zero in all cases with zero total deletable entries.
8416 */
8417 Assert(finalndeltids > 0 || delstate->bottomup);
8418 delstate->ndeltids = finalndeltids;
8419
8420 return snapshotConflictHorizon;
8421}
int maintenance_io_concurrency
Definition: bufmgr.c:162
bool IsCatalogRelation(Relation relation)
Definition: catalog.c:104
static int bottomup_sort_and_shrink(TM_IndexDeleteOp *delstate)
Definition: heapam.c:8675
void HeapTupleHeaderAdvanceConflictHorizon(HeapTupleHeader tuple, TransactionId *snapshotConflictHorizon)
Definition: heapam.c:7973
static void index_delete_check_htid(TM_IndexDeleteOp *delstate, Page page, OffsetNumber maxoff, ItemPointer htid, TM_IndexStatus *istatus)
Definition: heapam.c:8058
bool heap_hot_search_buffer(ItemPointer tid, Relation relation, Buffer buffer, Snapshot snapshot, HeapTuple heapTuple, bool *all_dead, bool first_call)
Definition: heapam.c:1725
static void index_delete_sort(TM_IndexDeleteOp *delstate)
Definition: heapam.c:8463
static bool HeapTupleHeaderIsHotUpdated(const HeapTupleHeaderData *tup)
Definition: htup_details.h:534
#define InvalidOffsetNumber
Definition: off.h:26
#define FirstOffsetNumber
Definition: off.h:27
static char * buf
Definition: pg_test_fsync.c:72
#define InitNonVacuumableSnapshot(snapshotdata, vistestp)
Definition: snapmgr.h:50
int get_tablespace_maintenance_io_concurrency(Oid spcid)
Definition: spccache.c:229
int bottomupfreespace
Definition: tableam.h:249
bool knowndeletable
Definition: tableam.h:219
int16 freespace
Definition: tableam.h:223

References Assert(), TM_IndexDeleteOp::bottomup, BOTTOMUP_MAX_NBLOCKS, bottomup_sort_and_shrink(), TM_IndexDeleteOp::bottomupfreespace, buf, BUFFER_LOCK_SHARE, BufferGetPage(), BufferIsValid(), TM_IndexDeleteOp::deltids, FirstOffsetNumber, TM_IndexStatus::freespace, get_tablespace_maintenance_io_concurrency(), GlobalVisTestFor(), heap_hot_search_buffer(), HeapTupleHeaderAdvanceConflictHorizon(), HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderGetXmin(), HeapTupleHeaderIsHotUpdated(), i, TM_IndexDelete::id, index_delete_check_htid(), index_delete_sort(), InitNonVacuumableSnapshot, InvalidBlockNumber, InvalidBuffer, InvalidOffsetNumber, InvalidTransactionId, IsCatalogRelation(), ItemIdGetRedirect, ItemIdIsNormal, ItemIdIsRedirected, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), TM_IndexStatus::knowndeletable, LockBuffer(), maintenance_io_concurrency, Min, TM_IndexDeleteOp::ndeltids, PageGetItem(), PageGetItemId(), PageGetMaxOffsetNumber(), TM_IndexStatus::promising, RelationData::rd_rel, ReadBuffer(), TM_IndexDeleteOp::status, HeapTupleHeaderData::t_ctid, TM_IndexDelete::tid, TransactionIdEquals, TransactionIdIsValid, and UnlockReleaseBuffer().

◆ heap_inplace_lock()

bool heap_inplace_lock ( Relation  relation,
HeapTuple  oldtup_ptr,
Buffer  buffer,
void(*)(void *)  release_callback,
void *  arg 
)

Definition at line 6354 of file heapam.c.

6357{
6358 HeapTupleData oldtup = *oldtup_ptr; /* minimize diff vs. heap_update() */
6359 TM_Result result;
6360 bool ret;
6361
6362#ifdef USE_ASSERT_CHECKING
6363 if (RelationGetRelid(relation) == RelationRelationId)
6364 check_inplace_rel_lock(oldtup_ptr);
6365#endif
6366
6367 Assert(BufferIsValid(buffer));
6368
6369 /*
6370 * Construct shared cache inval if necessary. Because we pass a tuple
6371 * version without our own inplace changes or inplace changes other
6372 * sessions complete while we wait for locks, inplace update mustn't
6373 * change catcache lookup keys. But we aren't bothering with index
6374 * updates either, so that's true a fortiori. After LockBuffer(), it
6375 * would be too late, because this might reach a
6376 * CatalogCacheInitializeCache() that locks "buffer".
6377 */
6378 CacheInvalidateHeapTupleInplace(relation, oldtup_ptr, NULL);
6379
6380 LockTuple(relation, &oldtup.t_self, InplaceUpdateTupleLock);
6382
6383 /*----------
6384 * Interpret HeapTupleSatisfiesUpdate() like heap_update() does, except:
6385 *
6386 * - wait unconditionally
6387 * - already locked tuple above, since inplace needs that unconditionally
6388 * - don't recheck header after wait: simpler to defer to next iteration
6389 * - don't try to continue even if the updater aborts: likewise
6390 * - no crosscheck
6391 */
6392 result = HeapTupleSatisfiesUpdate(&oldtup, GetCurrentCommandId(false),
6393 buffer);
6394
6395 if (result == TM_Invisible)
6396 {
6397 /* no known way this can happen */
6398 ereport(ERROR,
6399 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
6400 errmsg_internal("attempted to overwrite invisible tuple")));
6401 }
6402 else if (result == TM_SelfModified)
6403 {
6404 /*
6405 * CREATE INDEX might reach this if an expression is silly enough to
6406 * call e.g. SELECT ... FROM pg_class FOR SHARE. C code of other SQL
6407 * statements might get here after a heap_update() of the same row, in
6408 * the absence of an intervening CommandCounterIncrement().
6409 */
6410 ereport(ERROR,
6411 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
6412 errmsg("tuple to be updated was already modified by an operation triggered by the current command")));
6413 }
6414 else if (result == TM_BeingModified)
6415 {
6416 TransactionId xwait;
6417 uint16 infomask;
6418
6419 xwait = HeapTupleHeaderGetRawXmax(oldtup.t_data);
6420 infomask = oldtup.t_data->t_infomask;
6421
6422 if (infomask & HEAP_XMAX_IS_MULTI)
6423 {
6426 int remain;
6427
6428 if (DoesMultiXactIdConflict((MultiXactId) xwait, infomask,
6429 lockmode, NULL))
6430 {
6432 release_callback(arg);
6433 ret = false;
6434 MultiXactIdWait((MultiXactId) xwait, mxact_status, infomask,
6435 relation, &oldtup.t_self, XLTW_Update,
6436 &remain);
6437 }
6438 else
6439 ret = true;
6440 }
6442 ret = true;
6443 else if (HEAP_XMAX_IS_KEYSHR_LOCKED(infomask))
6444 ret = true;
6445 else
6446 {
6448 release_callback(arg);
6449 ret = false;
6450 XactLockTableWait(xwait, relation, &oldtup.t_self,
6451 XLTW_Update);
6452 }
6453 }
6454 else
6455 {
6456 ret = (result == TM_Ok);
6457 if (!ret)
6458 {
6460 release_callback(arg);
6461 }
6462 }
6463
6464 /*
6465 * GetCatalogSnapshot() relies on invalidation messages to know when to
6466 * take a new snapshot. COMMIT of xwait is responsible for sending the
6467 * invalidation. We're not acquiring heavyweight locks sufficient to
6468 * block if not yet sent, so we must take a new snapshot to ensure a later
6469 * attempt has a fair chance. While we don't need this if xwait aborted,
6470 * don't bother optimizing that.
6471 */
6472 if (!ret)
6473 {
6474 UnlockTuple(relation, &oldtup.t_self, InplaceUpdateTupleLock);
6477 }
6478 return ret;
6479}
void CacheInvalidateHeapTupleInplace(Relation relation, HeapTuple tuple, HeapTuple newtuple)
Definition: inval.c:1588
void ForgetInplace_Inval(void)
Definition: inval.c:1286
void UnlockTuple(Relation relation, const ItemPointerData *tid, LOCKMODE lockmode)
Definition: lmgr.c:601
void LockTuple(Relation relation, const ItemPointerData *tid, LOCKMODE lockmode)
Definition: lmgr.c:562
@ XLTW_Update
Definition: lmgr.h:27
#define InplaceUpdateTupleLock
Definition: lockdefs.h:48
void * arg
void InvalidateCatalogSnapshot(void)
Definition: snapmgr.c:454
CommandId GetCurrentCommandId(bool used)
Definition: xact.c:829

References arg, Assert(), BUFFER_LOCK_EXCLUSIVE, BUFFER_LOCK_UNLOCK, BufferIsValid(), CacheInvalidateHeapTupleInplace(), DoesMultiXactIdConflict(), ereport, errcode(), errmsg(), errmsg_internal(), ERROR, ForgetInplace_Inval(), GetCurrentCommandId(), HEAP_XMAX_IS_KEYSHR_LOCKED(), HEAP_XMAX_IS_MULTI, HeapTupleHeaderGetRawXmax(), HeapTupleSatisfiesUpdate(), InplaceUpdateTupleLock, InvalidateCatalogSnapshot(), LockBuffer(), LockTuple(), LockTupleNoKeyExclusive, MultiXactIdWait(), MultiXactStatusNoKeyUpdate, RelationGetRelid, HeapTupleData::t_data, HeapTupleHeaderData::t_infomask, HeapTupleData::t_self, TM_BeingModified, TM_Invisible, TM_Ok, TM_SelfModified, TransactionIdIsCurrentTransactionId(), UnlockTuple(), XactLockTableWait(), and XLTW_Update.

Referenced by systable_inplace_update_begin().

◆ heap_inplace_unlock()

void heap_inplace_unlock ( Relation  relation,
HeapTuple  oldtup,
Buffer  buffer 
)

◆ heap_inplace_update_and_unlock()

void heap_inplace_update_and_unlock ( Relation  relation,
HeapTuple  oldtup,
HeapTuple  tuple,
Buffer  buffer 
)

Definition at line 6490 of file heapam.c.

6493{
6494 HeapTupleHeader htup = oldtup->t_data;
6495 uint32 oldlen;
6496 uint32 newlen;
6497 char *dst;
6498 char *src;
6499 int nmsgs = 0;
6500 SharedInvalidationMessage *invalMessages = NULL;
6501 bool RelcacheInitFileInval = false;
6502
6503 Assert(ItemPointerEquals(&oldtup->t_self, &tuple->t_self));
6504 oldlen = oldtup->t_len - htup->t_hoff;
6505 newlen = tuple->t_len - tuple->t_data->t_hoff;
6506 if (oldlen != newlen || htup->t_hoff != tuple->t_data->t_hoff)
6507 elog(ERROR, "wrong tuple length");
6508
6509 dst = (char *) htup + htup->t_hoff;
6510 src = (char *) tuple->t_data + tuple->t_data->t_hoff;
6511
6512 /* Like RecordTransactionCommit(), log only if needed */
6514 nmsgs = inplaceGetInvalidationMessages(&invalMessages,
6515 &RelcacheInitFileInval);
6516
6517 /*
6518 * Unlink relcache init files as needed. If unlinking, acquire
6519 * RelCacheInitLock until after associated invalidations. By doing this
6520 * in advance, if we checkpoint and then crash between inplace
6521 * XLogInsert() and inval, we don't rely on StartupXLOG() ->
6522 * RelationCacheInitFileRemove(). That uses elevel==LOG, so replay would
6523 * neglect to PANIC on EIO.
6524 */
6526
6527 /*----------
6528 * NO EREPORT(ERROR) from here till changes are complete
6529 *
6530 * Our buffer lock won't stop a reader having already pinned and checked
6531 * visibility for this tuple. Hence, we write WAL first, then mutate the
6532 * buffer. Like in MarkBufferDirtyHint() or RecordTransactionCommit(),
6533 * checkpoint delay makes that acceptable. With the usual order of
6534 * changes, a crash after memcpy() and before XLogInsert() could allow
6535 * datfrozenxid to overtake relfrozenxid:
6536 *
6537 * ["D" is a VACUUM (ONLY_DATABASE_STATS)]
6538 * ["R" is a VACUUM tbl]
6539 * D: vac_update_datfrozenxid() -> systable_beginscan(pg_class)
6540 * D: systable_getnext() returns pg_class tuple of tbl
6541 * R: memcpy() into pg_class tuple of tbl
6542 * D: raise pg_database.datfrozenxid, XLogInsert(), finish
6543 * [crash]
6544 * [recovery restores datfrozenxid w/o relfrozenxid]
6545 *
6546 * Mimic MarkBufferDirtyHint() subroutine XLogSaveBufferForHint().
6547 * Specifically, use DELAY_CHKPT_START, and copy the buffer to the stack.
6548 * The stack copy facilitates a FPI of the post-mutation block before we
6549 * accept other sessions seeing it. DELAY_CHKPT_START allows us to
6550 * XLogInsert() before MarkBufferDirty(). Since XLogSaveBufferForHint()
6551 * can operate under BUFFER_LOCK_SHARED, it can't avoid DELAY_CHKPT_START.
6552 * This function, however, likely could avoid it with the following order
6553 * of operations: MarkBufferDirty(), XLogInsert(), memcpy(). Opt to use
6554 * DELAY_CHKPT_START here, too, as a way to have fewer distinct code
6555 * patterns to analyze. Inplace update isn't so frequent that it should
6556 * pursue the small optimization of skipping DELAY_CHKPT_START.
6557 */
6561
6562 /* XLOG stuff */
6563 if (RelationNeedsWAL(relation))
6564 {
6565 xl_heap_inplace xlrec;
6566 PGAlignedBlock copied_buffer;
6567 char *origdata = (char *) BufferGetBlock(buffer);
6568 Page page = BufferGetPage(buffer);
6569 uint16 lower = ((PageHeader) page)->pd_lower;
6570 uint16 upper = ((PageHeader) page)->pd_upper;
6571 uintptr_t dst_offset_in_block;
6572 RelFileLocator rlocator;
6573 ForkNumber forkno;
6574 BlockNumber blkno;
6575 XLogRecPtr recptr;
6576
6577 xlrec.offnum = ItemPointerGetOffsetNumber(&tuple->t_self);
6578 xlrec.dbId = MyDatabaseId;
6579 xlrec.tsId = MyDatabaseTableSpace;
6580 xlrec.relcacheInitFileInval = RelcacheInitFileInval;
6581 xlrec.nmsgs = nmsgs;
6582
6585 if (nmsgs != 0)
6586 XLogRegisterData(invalMessages,
6587 nmsgs * sizeof(SharedInvalidationMessage));
6588
6589 /* register block matching what buffer will look like after changes */
6590 memcpy(copied_buffer.data, origdata, lower);
6591 memcpy(copied_buffer.data + upper, origdata + upper, BLCKSZ - upper);
6592 dst_offset_in_block = dst - origdata;
6593 memcpy(copied_buffer.data + dst_offset_in_block, src, newlen);
6594 BufferGetTag(buffer, &rlocator, &forkno, &blkno);
6595 Assert(forkno == MAIN_FORKNUM);
6596 XLogRegisterBlock(0, &rlocator, forkno, blkno, copied_buffer.data,
6598 XLogRegisterBufData(0, src, newlen);
6599
6600 /* inplace updates aren't decoded atm, don't log the origin */
6601
6602 recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_INPLACE);
6603
6604 PageSetLSN(page, recptr);
6605 }
6606
6607 memcpy(dst, src, newlen);
6608
6609 MarkBufferDirty(buffer);
6610
6612
6613 /*
6614 * Send invalidations to shared queue. SearchSysCacheLocked1() assumes we
6615 * do this before UnlockTuple().
6616 *
6617 * If we're mutating a tuple visible only to this transaction, there's an
6618 * equivalent transactional inval from the action that created the tuple,
6619 * and this inval is superfluous.
6620 */
6622
6623 MyProc->delayChkptFlags &= ~DELAY_CHKPT_START;
6625 UnlockTuple(relation, &tuple->t_self, InplaceUpdateTupleLock);
6626
6627 AcceptInvalidationMessages(); /* local processing of just-sent inval */
6628
6629 /*
6630 * Queue a transactional inval. The immediate invalidation we just sent
6631 * is the only one known to be necessary. To reduce risk from the
6632 * transition to immediate invalidation, continue sending a transactional
6633 * invalidation like we've long done. Third-party code might rely on it.
6634 */
6636 CacheInvalidateHeapTuple(relation, tuple, NULL);
6637}
void BufferGetTag(Buffer buffer, RelFileLocator *rlocator, ForkNumber *forknum, BlockNumber *blknum)
Definition: bufmgr.c:4250
static Block BufferGetBlock(Buffer buffer)
Definition: bufmgr.h:385
PageHeaderData * PageHeader
Definition: bufpage.h:174
Oid MyDatabaseTableSpace
Definition: globals.c:96
Oid MyDatabaseId
Definition: globals.c:94
#define MinSizeOfHeapInplace
Definition: heapam_xlog.h:435
#define XLOG_HEAP_INPLACE
Definition: heapam_xlog.h:40
void AcceptInvalidationMessages(void)
Definition: inval.c:930
int inplaceGetInvalidationMessages(SharedInvalidationMessage **msgs, bool *RelcacheInitFileInval)
Definition: inval.c:1088
void PreInplace_Inval(void)
Definition: inval.c:1250
void AtInplace_Inval(void)
Definition: inval.c:1263
#define IsBootstrapProcessingMode()
Definition: miscadmin.h:476
Datum lower(PG_FUNCTION_ARGS)
Definition: oracle_compat.c:49
Datum upper(PG_FUNCTION_ARGS)
Definition: oracle_compat.c:80
#define DELAY_CHKPT_START
Definition: proc.h:135
ForkNumber
Definition: relpath.h:56
PGPROC * MyProc
Definition: proc.c:66
int delayChkptFlags
Definition: proc.h:257
OffsetNumber offnum
Definition: heapam_xlog.h:427
bool relcacheInitFileInval
Definition: heapam_xlog.h:430
char data[BLCKSZ]
Definition: c.h:1118
#define XLogStandbyInfoActive()
Definition: xlog.h:123
void XLogRegisterBufData(uint8 block_id, const void *data, uint32 len)
Definition: xloginsert.c:406
void XLogRegisterBlock(uint8 block_id, RelFileLocator *rlocator, ForkNumber forknum, BlockNumber blknum, const PageData *page, uint8 flags)
Definition: xloginsert.c:310

References AcceptInvalidationMessages(), Assert(), AtInplace_Inval(), BUFFER_LOCK_UNLOCK, BufferGetBlock(), BufferGetPage(), BufferGetTag(), CacheInvalidateHeapTuple(), PGAlignedBlock::data, xl_heap_inplace::dbId, DELAY_CHKPT_START, PGPROC::delayChkptFlags, elog, END_CRIT_SECTION, ERROR, inplaceGetInvalidationMessages(), InplaceUpdateTupleLock, IsBootstrapProcessingMode, ItemPointerEquals(), ItemPointerGetOffsetNumber(), LockBuffer(), lower(), MAIN_FORKNUM, MarkBufferDirty(), MinSizeOfHeapInplace, MyDatabaseId, MyDatabaseTableSpace, MyProc, xl_heap_inplace::nmsgs, xl_heap_inplace::offnum, PageSetLSN(), PreInplace_Inval(), REGBUF_STANDARD, RelationNeedsWAL, xl_heap_inplace::relcacheInitFileInval, START_CRIT_SECTION, HeapTupleData::t_data, HeapTupleHeaderData::t_hoff, HeapTupleData::t_len, HeapTupleData::t_self, xl_heap_inplace::tsId, UnlockTuple(), upper(), XLOG_HEAP_INPLACE, XLogBeginInsert(), XLogInsert(), XLogRegisterBlock(), XLogRegisterBufData(), XLogRegisterData(), and XLogStandbyInfoActive.

Referenced by systable_inplace_update_finish().

◆ heap_insert()

void heap_insert ( Relation  relation,
HeapTuple  tup,
CommandId  cid,
int  options,
BulkInsertState  bistate 
)

Definition at line 2088 of file heapam.c.

2090{
2092 HeapTuple heaptup;
2093 Buffer buffer;
2094 Buffer vmbuffer = InvalidBuffer;
2095 bool all_visible_cleared = false;
2096
2097 /* Cheap, simplistic check that the tuple matches the rel's rowtype. */
2100
2101 AssertHasSnapshotForToast(relation);
2102
2103 /*
2104 * Fill in tuple header fields and toast the tuple if necessary.
2105 *
2106 * Note: below this point, heaptup is the data we actually intend to store
2107 * into the relation; tup is the caller's original untoasted data.
2108 */
2109 heaptup = heap_prepare_insert(relation, tup, xid, cid, options);
2110
2111 /*
2112 * Find buffer to insert this tuple into. If the page is all visible,
2113 * this will also pin the requisite visibility map page.
2114 */
2115 buffer = RelationGetBufferForTuple(relation, heaptup->t_len,
2116 InvalidBuffer, options, bistate,
2117 &vmbuffer, NULL,
2118 0);
2119
2120 /*
2121 * We're about to do the actual insert -- but check for conflict first, to
2122 * avoid possibly having to roll back work we've just done.
2123 *
2124 * This is safe without a recheck as long as there is no possibility of
2125 * another process scanning the page between this check and the insert
2126 * being visible to the scan (i.e., an exclusive buffer content lock is
2127 * continuously held from this point until the tuple insert is visible).
2128 *
2129 * For a heap insert, we only need to check for table-level SSI locks. Our
2130 * new tuple can't possibly conflict with existing tuple locks, and heap
2131 * page locks are only consolidated versions of tuple locks; they do not
2132 * lock "gaps" as index page locks do. So we don't need to specify a
2133 * buffer when making the call, which makes for a faster check.
2134 */
2136
2137 /* NO EREPORT(ERROR) from here till changes are logged */
2139
2140 RelationPutHeapTuple(relation, buffer, heaptup,
2142
2143 if (PageIsAllVisible(BufferGetPage(buffer)))
2144 {
2145 all_visible_cleared = true;
2147 visibilitymap_clear(relation,
2148 ItemPointerGetBlockNumber(&(heaptup->t_self)),
2149 vmbuffer, VISIBILITYMAP_VALID_BITS);
2150 }
2151
2152 /*
2153 * XXX Should we set PageSetPrunable on this page ?
2154 *
2155 * The inserting transaction may eventually abort thus making this tuple
2156 * DEAD and hence available for pruning. Though we don't want to optimize
2157 * for aborts, if no other tuple in this page is UPDATEd/DELETEd, the
2158 * aborted tuple will never be pruned until next vacuum is triggered.
2159 *
2160 * If you do add PageSetPrunable here, add it in heap_xlog_insert too.
2161 */
2162
2163 MarkBufferDirty(buffer);
2164
2165 /* XLOG stuff */
2166 if (RelationNeedsWAL(relation))
2167 {
2168 xl_heap_insert xlrec;
2169 xl_heap_header xlhdr;
2170 XLogRecPtr recptr;
2171 Page page = BufferGetPage(buffer);
2172 uint8 info = XLOG_HEAP_INSERT;
2173 int bufflags = 0;
2174
2175 /*
2176 * If this is a catalog, we need to transmit combo CIDs to properly
2177 * decode, so log that as well.
2178 */
2180 log_heap_new_cid(relation, heaptup);
2181
2182 /*
2183 * If this is the single and first tuple on page, we can reinit the
2184 * page instead of restoring the whole thing. Set flag, and hide
2185 * buffer references from XLogInsert.
2186 */
2189 {
2190 info |= XLOG_HEAP_INIT_PAGE;
2191 bufflags |= REGBUF_WILL_INIT;
2192 }
2193
2194 xlrec.offnum = ItemPointerGetOffsetNumber(&heaptup->t_self);
2195 xlrec.flags = 0;
2196 if (all_visible_cleared)
2201
2202 /*
2203 * For logical decoding, we need the tuple even if we're doing a full
2204 * page write, so make sure it's included even if we take a full-page
2205 * image. (XXX We could alternatively store a pointer into the FPW).
2206 */
2207 if (RelationIsLogicallyLogged(relation) &&
2209 {
2211 bufflags |= REGBUF_KEEP_DATA;
2212
2213 if (IsToastRelation(relation))
2215 }
2216
2219
2220 xlhdr.t_infomask2 = heaptup->t_data->t_infomask2;
2221 xlhdr.t_infomask = heaptup->t_data->t_infomask;
2222 xlhdr.t_hoff = heaptup->t_data->t_hoff;
2223
2224 /*
2225 * note we mark xlhdr as belonging to buffer; if XLogInsert decides to
2226 * write the whole page to the xlog, we don't need to store
2227 * xl_heap_header in the xlog.
2228 */
2229 XLogRegisterBuffer(0, buffer, REGBUF_STANDARD | bufflags);
2231 /* PG73FORMAT: write bitmap [+ padding] [+ oid] + data */
2233 (char *) heaptup->t_data + SizeofHeapTupleHeader,
2234 heaptup->t_len - SizeofHeapTupleHeader);
2235
2236 /* filtering by origin on a row level is much more efficient */
2238
2239 recptr = XLogInsert(RM_HEAP_ID, info);
2240
2241 PageSetLSN(page, recptr);
2242 }
2243
2245
2246 UnlockReleaseBuffer(buffer);
2247 if (vmbuffer != InvalidBuffer)
2248 ReleaseBuffer(vmbuffer);
2249
2250 /*
2251 * If tuple is cachable, mark it for invalidation from the caches in case
2252 * we abort. Note it is OK to do this after releasing the buffer, because
2253 * the heaptup data structure is all in local memory, not in the shared
2254 * buffer.
2255 */
2256 CacheInvalidateHeapTuple(relation, heaptup, NULL);
2257
2258 /* Note: speculative insertions are counted too, even if aborted later */
2259 pgstat_count_heap_insert(relation, 1);
2260
2261 /*
2262 * If heaptup is a private copy, release it. Don't forget to copy t_self
2263 * back to the caller's image, too.
2264 */
2265 if (heaptup != tup)
2266 {
2267 tup->t_self = heaptup->t_self;
2268 heap_freetuple(heaptup);
2269 }
2270}
uint8_t uint8
Definition: c.h:536
static HeapTuple heap_prepare_insert(Relation relation, HeapTuple tup, TransactionId xid, CommandId cid, int options)
Definition: heapam.c:2279
#define HEAP_INSERT_SPECULATIVE
Definition: heapam.h:40
#define HEAP_INSERT_NO_LOGICAL
Definition: heapam.h:39
#define XLH_INSERT_ON_TOAST_RELATION
Definition: heapam_xlog.h:76
#define XLH_INSERT_IS_SPECULATIVE
Definition: heapam_xlog.h:74
#define XLH_INSERT_ALL_VISIBLE_CLEARED
Definition: heapam_xlog.h:72
#define XLOG_HEAP_INSERT
Definition: heapam_xlog.h:33
#define SizeOfHeapInsert
Definition: heapam_xlog.h:168
#define XLH_INSERT_CONTAINS_NEW_TUPLE
Definition: heapam_xlog.h:75
#define XLOG_HEAP_INIT_PAGE
Definition: heapam_xlog.h:47
void RelationPutHeapTuple(Relation relation, Buffer buffer, HeapTuple tuple, bool token)
Definition: hio.c:35
Buffer RelationGetBufferForTuple(Relation relation, Size len, Buffer otherBuffer, int options, BulkInsertState bistate, Buffer *vmbuffer, Buffer *vmbuffer_other, int num_pages)
Definition: hio.c:502
#define HeapTupleHeaderGetNatts(tup)
Definition: htup_details.h:577
void pgstat_count_heap_insert(Relation rel, PgStat_Counter n)
#define RelationGetNumberOfAttributes(relation)
Definition: rel.h:520
OffsetNumber offnum
Definition: heapam_xlog.h:162
#define REGBUF_KEEP_DATA
Definition: xloginsert.h:36
#define REGBUF_WILL_INIT
Definition: xloginsert.h:34

References Assert(), AssertHasSnapshotForToast(), BufferGetBlockNumber(), BufferGetPage(), CacheInvalidateHeapTuple(), CheckForSerializableConflictIn(), END_CRIT_SECTION, FirstOffsetNumber, xl_heap_insert::flags, GetCurrentTransactionId(), heap_freetuple(), HEAP_INSERT_NO_LOGICAL, HEAP_INSERT_SPECULATIVE, heap_prepare_insert(), HeapTupleHeaderGetNatts, InvalidBlockNumber, InvalidBuffer, IsToastRelation(), ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), log_heap_new_cid(), MarkBufferDirty(), xl_heap_insert::offnum, PageClearAllVisible(), PageGetMaxOffsetNumber(), PageIsAllVisible(), PageSetLSN(), pgstat_count_heap_insert(), REGBUF_KEEP_DATA, REGBUF_STANDARD, REGBUF_WILL_INIT, RelationGetBufferForTuple(), RelationGetNumberOfAttributes, RelationIsAccessibleInLogicalDecoding, RelationIsLogicallyLogged, RelationNeedsWAL, RelationPutHeapTuple(), ReleaseBuffer(), SizeOfHeapHeader, SizeOfHeapInsert, SizeofHeapTupleHeader, START_CRIT_SECTION, HeapTupleData::t_data, xl_heap_header::t_hoff, HeapTupleHeaderData::t_hoff, xl_heap_header::t_infomask, HeapTupleHeaderData::t_infomask, xl_heap_header::t_infomask2, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_self, UnlockReleaseBuffer(), visibilitymap_clear(), VISIBILITYMAP_VALID_BITS, XLH_INSERT_ALL_VISIBLE_CLEARED, XLH_INSERT_CONTAINS_NEW_TUPLE, XLH_INSERT_IS_SPECULATIVE, XLH_INSERT_ON_TOAST_RELATION, XLOG_HEAP_INIT_PAGE, XLOG_HEAP_INSERT, XLOG_INCLUDE_ORIGIN, XLogBeginInsert(), XLogInsert(), XLogRegisterBufData(), XLogRegisterBuffer(), XLogRegisterData(), and XLogSetRecordFlags().

Referenced by heapam_tuple_insert(), heapam_tuple_insert_speculative(), simple_heap_insert(), and toast_save_datum().

◆ heap_lock_tuple()

TM_Result heap_lock_tuple ( Relation  relation,
HeapTuple  tuple,
CommandId  cid,
LockTupleMode  mode,
LockWaitPolicy  wait_policy,
bool  follow_updates,
Buffer buffer,
TM_FailureData tmfd 
)

Definition at line 4579 of file heapam.c.

4583{
4584 TM_Result result;
4585 ItemPointer tid = &(tuple->t_self);
4586 ItemId lp;
4587 Page page;
4588 Buffer vmbuffer = InvalidBuffer;
4589 BlockNumber block;
4590 TransactionId xid,
4591 xmax;
4592 uint16 old_infomask,
4593 new_infomask,
4594 new_infomask2;
4595 bool first_time = true;
4596 bool skip_tuple_lock = false;
4597 bool have_tuple_lock = false;
4598 bool cleared_all_frozen = false;
4599
4600 *buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(tid));
4601 block = ItemPointerGetBlockNumber(tid);
4602
4603 /*
4604 * Before locking the buffer, pin the visibility map page if it appears to
4605 * be necessary. Since we haven't got the lock yet, someone else might be
4606 * in the middle of changing this, so we'll need to recheck after we have
4607 * the lock.
4608 */
4609 if (PageIsAllVisible(BufferGetPage(*buffer)))
4610 visibilitymap_pin(relation, block, &vmbuffer);
4611
4613
4614 page = BufferGetPage(*buffer);
4617
4618 tuple->t_data = (HeapTupleHeader) PageGetItem(page, lp);
4619 tuple->t_len = ItemIdGetLength(lp);
4620 tuple->t_tableOid = RelationGetRelid(relation);
4621
4622l3:
4623 result = HeapTupleSatisfiesUpdate(tuple, cid, *buffer);
4624
4625 if (result == TM_Invisible)
4626 {
4627 /*
4628 * This is possible, but only when locking a tuple for ON CONFLICT
4629 * UPDATE. We return this value here rather than throwing an error in
4630 * order to give that case the opportunity to throw a more specific
4631 * error.
4632 */
4633 result = TM_Invisible;
4634 goto out_locked;
4635 }
4636 else if (result == TM_BeingModified ||
4637 result == TM_Updated ||
4638 result == TM_Deleted)
4639 {
4640 TransactionId xwait;
4641 uint16 infomask;
4642 uint16 infomask2;
4643 bool require_sleep;
4644 ItemPointerData t_ctid;
4645
4646 /* must copy state data before unlocking buffer */
4647 xwait = HeapTupleHeaderGetRawXmax(tuple->t_data);
4648 infomask = tuple->t_data->t_infomask;
4649 infomask2 = tuple->t_data->t_infomask2;
4650 ItemPointerCopy(&tuple->t_data->t_ctid, &t_ctid);
4651
4653
4654 /*
4655 * If any subtransaction of the current top transaction already holds
4656 * a lock as strong as or stronger than what we're requesting, we
4657 * effectively hold the desired lock already. We *must* succeed
4658 * without trying to take the tuple lock, else we will deadlock
4659 * against anyone wanting to acquire a stronger lock.
4660 *
4661 * Note we only do this the first time we loop on the HTSU result;
4662 * there is no point in testing in subsequent passes, because
4663 * evidently our own transaction cannot have acquired a new lock after
4664 * the first time we checked.
4665 */
4666 if (first_time)
4667 {
4668 first_time = false;
4669
4670 if (infomask & HEAP_XMAX_IS_MULTI)
4671 {
4672 int i;
4673 int nmembers;
4674 MultiXactMember *members;
4675
4676 /*
4677 * We don't need to allow old multixacts here; if that had
4678 * been the case, HeapTupleSatisfiesUpdate would have returned
4679 * MayBeUpdated and we wouldn't be here.
4680 */
4681 nmembers =
4682 GetMultiXactIdMembers(xwait, &members, false,
4683 HEAP_XMAX_IS_LOCKED_ONLY(infomask));
4684
4685 for (i = 0; i < nmembers; i++)
4686 {
4687 /* only consider members of our own transaction */
4688 if (!TransactionIdIsCurrentTransactionId(members[i].xid))
4689 continue;
4690
4691 if (TUPLOCK_from_mxstatus(members[i].status) >= mode)
4692 {
4693 pfree(members);
4694 result = TM_Ok;
4695 goto out_unlocked;
4696 }
4697 else
4698 {
4699 /*
4700 * Disable acquisition of the heavyweight tuple lock.
4701 * Otherwise, when promoting a weaker lock, we might
4702 * deadlock with another locker that has acquired the
4703 * heavyweight tuple lock and is waiting for our
4704 * transaction to finish.
4705 *
4706 * Note that in this case we still need to wait for
4707 * the multixact if required, to avoid acquiring
4708 * conflicting locks.
4709 */
4710 skip_tuple_lock = true;
4711 }
4712 }
4713
4714 if (members)
4715 pfree(members);
4716 }
4718 {
4719 switch (mode)
4720 {
4721 case LockTupleKeyShare:
4723 HEAP_XMAX_IS_SHR_LOCKED(infomask) ||
4724 HEAP_XMAX_IS_EXCL_LOCKED(infomask));
4725 result = TM_Ok;
4726 goto out_unlocked;
4727 case LockTupleShare:
4728 if (HEAP_XMAX_IS_SHR_LOCKED(infomask) ||
4729 HEAP_XMAX_IS_EXCL_LOCKED(infomask))
4730 {
4731 result = TM_Ok;
4732 goto out_unlocked;
4733 }
4734 break;
4736 if (HEAP_XMAX_IS_EXCL_LOCKED(infomask))
4737 {
4738 result = TM_Ok;
4739 goto out_unlocked;
4740 }
4741 break;
4742 case LockTupleExclusive:
4743 if (HEAP_XMAX_IS_EXCL_LOCKED(infomask) &&
4744 infomask2 & HEAP_KEYS_UPDATED)
4745 {
4746 result = TM_Ok;
4747 goto out_unlocked;
4748 }
4749 break;
4750 }
4751 }
4752 }
4753
4754 /*
4755 * Initially assume that we will have to wait for the locking
4756 * transaction(s) to finish. We check various cases below in which
4757 * this can be turned off.
4758 */
4759 require_sleep = true;
4760 if (mode == LockTupleKeyShare)
4761 {
4762 /*
4763 * If we're requesting KeyShare, and there's no update present, we
4764 * don't need to wait. Even if there is an update, we can still
4765 * continue if the key hasn't been modified.
4766 *
4767 * However, if there are updates, we need to walk the update chain
4768 * to mark future versions of the row as locked, too. That way,
4769 * if somebody deletes that future version, we're protected
4770 * against the key going away. This locking of future versions
4771 * could block momentarily, if a concurrent transaction is
4772 * deleting a key; or it could return a value to the effect that
4773 * the transaction deleting the key has already committed. So we
4774 * do this before re-locking the buffer; otherwise this would be
4775 * prone to deadlocks.
4776 *
4777 * Note that the TID we're locking was grabbed before we unlocked
4778 * the buffer. For it to change while we're not looking, the
4779 * other properties we're testing for below after re-locking the
4780 * buffer would also change, in which case we would restart this
4781 * loop above.
4782 */
4783 if (!(infomask2 & HEAP_KEYS_UPDATED))
4784 {
4785 bool updated;
4786
4787 updated = !HEAP_XMAX_IS_LOCKED_ONLY(infomask);
4788
4789 /*
4790 * If there are updates, follow the update chain; bail out if
4791 * that cannot be done.
4792 */
4793 if (follow_updates && updated)
4794 {
4795 TM_Result res;
4796
4797 res = heap_lock_updated_tuple(relation, tuple, &t_ctid,
4799 mode);
4800 if (res != TM_Ok)
4801 {
4802 result = res;
4803 /* recovery code expects to have buffer lock held */
4805 goto failed;
4806 }
4807 }
4808
4810
4811 /*
4812 * Make sure it's still an appropriate lock, else start over.
4813 * Also, if it wasn't updated before we released the lock, but
4814 * is updated now, we start over too; the reason is that we
4815 * now need to follow the update chain to lock the new
4816 * versions.
4817 */
4818 if (!HeapTupleHeaderIsOnlyLocked(tuple->t_data) &&
4819 ((tuple->t_data->t_infomask2 & HEAP_KEYS_UPDATED) ||
4820 !updated))
4821 goto l3;
4822
4823 /* Things look okay, so we can skip sleeping */
4824 require_sleep = false;
4825
4826 /*
4827 * Note we allow Xmax to change here; other updaters/lockers
4828 * could have modified it before we grabbed the buffer lock.
4829 * However, this is not a problem, because with the recheck we
4830 * just did we ensure that they still don't conflict with the
4831 * lock we want.
4832 */
4833 }
4834 }
4835 else if (mode == LockTupleShare)
4836 {
4837 /*
4838 * If we're requesting Share, we can similarly avoid sleeping if
4839 * there's no update and no exclusive lock present.
4840 */
4841 if (HEAP_XMAX_IS_LOCKED_ONLY(infomask) &&
4842 !HEAP_XMAX_IS_EXCL_LOCKED(infomask))
4843 {
4845
4846 /*
4847 * Make sure it's still an appropriate lock, else start over.
4848 * See above about allowing xmax to change.
4849 */
4852 goto l3;
4853 require_sleep = false;
4854 }
4855 }
4856 else if (mode == LockTupleNoKeyExclusive)
4857 {
4858 /*
4859 * If we're requesting NoKeyExclusive, we might also be able to
4860 * avoid sleeping; just ensure that there no conflicting lock
4861 * already acquired.
4862 */
4863 if (infomask & HEAP_XMAX_IS_MULTI)
4864 {
4865 if (!DoesMultiXactIdConflict((MultiXactId) xwait, infomask,
4866 mode, NULL))
4867 {
4868 /*
4869 * No conflict, but if the xmax changed under us in the
4870 * meantime, start over.
4871 */
4873 if (xmax_infomask_changed(tuple->t_data->t_infomask, infomask) ||
4875 xwait))
4876 goto l3;
4877
4878 /* otherwise, we're good */
4879 require_sleep = false;
4880 }
4881 }
4882 else if (HEAP_XMAX_IS_KEYSHR_LOCKED(infomask))
4883 {
4885
4886 /* if the xmax changed in the meantime, start over */
4887 if (xmax_infomask_changed(tuple->t_data->t_infomask, infomask) ||
4889 xwait))
4890 goto l3;
4891 /* otherwise, we're good */
4892 require_sleep = false;
4893 }
4894 }
4895
4896 /*
4897 * As a check independent from those above, we can also avoid sleeping
4898 * if the current transaction is the sole locker of the tuple. Note
4899 * that the strength of the lock already held is irrelevant; this is
4900 * not about recording the lock in Xmax (which will be done regardless
4901 * of this optimization, below). Also, note that the cases where we
4902 * hold a lock stronger than we are requesting are already handled
4903 * above by not doing anything.
4904 *
4905 * Note we only deal with the non-multixact case here; MultiXactIdWait
4906 * is well equipped to deal with this situation on its own.
4907 */
4908 if (require_sleep && !(infomask & HEAP_XMAX_IS_MULTI) &&
4910 {
4911 /* ... but if the xmax changed in the meantime, start over */
4913 if (xmax_infomask_changed(tuple->t_data->t_infomask, infomask) ||
4915 xwait))
4916 goto l3;
4918 require_sleep = false;
4919 }
4920
4921 /*
4922 * Time to sleep on the other transaction/multixact, if necessary.
4923 *
4924 * If the other transaction is an update/delete that's already
4925 * committed, then sleeping cannot possibly do any good: if we're
4926 * required to sleep, get out to raise an error instead.
4927 *
4928 * By here, we either have already acquired the buffer exclusive lock,
4929 * or we must wait for the locking transaction or multixact; so below
4930 * we ensure that we grab buffer lock after the sleep.
4931 */
4932 if (require_sleep && (result == TM_Updated || result == TM_Deleted))
4933 {
4935 goto failed;
4936 }
4937 else if (require_sleep)
4938 {
4939 /*
4940 * Acquire tuple lock to establish our priority for the tuple, or
4941 * die trying. LockTuple will release us when we are next-in-line
4942 * for the tuple. We must do this even if we are share-locking,
4943 * but not if we already have a weaker lock on the tuple.
4944 *
4945 * If we are forced to "start over" below, we keep the tuple lock;
4946 * this arranges that we stay at the head of the line while
4947 * rechecking tuple state.
4948 */
4949 if (!skip_tuple_lock &&
4950 !heap_acquire_tuplock(relation, tid, mode, wait_policy,
4951 &have_tuple_lock))
4952 {
4953 /*
4954 * This can only happen if wait_policy is Skip and the lock
4955 * couldn't be obtained.
4956 */
4957 result = TM_WouldBlock;
4958 /* recovery code expects to have buffer lock held */
4960 goto failed;
4961 }
4962
4963 if (infomask & HEAP_XMAX_IS_MULTI)
4964 {
4966
4967 /* We only ever lock tuples, never update them */
4968 if (status >= MultiXactStatusNoKeyUpdate)
4969 elog(ERROR, "invalid lock mode in heap_lock_tuple");
4970
4971 /* wait for multixact to end, or die trying */
4972 switch (wait_policy)
4973 {
4974 case LockWaitBlock:
4975 MultiXactIdWait((MultiXactId) xwait, status, infomask,
4976 relation, &tuple->t_self, XLTW_Lock, NULL);
4977 break;
4978 case LockWaitSkip:
4980 status, infomask, relation,
4981 NULL, false))
4982 {
4983 result = TM_WouldBlock;
4984 /* recovery code expects to have buffer lock held */
4986 goto failed;
4987 }
4988 break;
4989 case LockWaitError:
4991 status, infomask, relation,
4992 NULL, log_lock_failures))
4993 ereport(ERROR,
4994 (errcode(ERRCODE_LOCK_NOT_AVAILABLE),
4995 errmsg("could not obtain lock on row in relation \"%s\"",
4996 RelationGetRelationName(relation))));
4997
4998 break;
4999 }
5000
5001 /*
5002 * Of course, the multixact might not be done here: if we're
5003 * requesting a light lock mode, other transactions with light
5004 * locks could still be alive, as well as locks owned by our
5005 * own xact or other subxacts of this backend. We need to
5006 * preserve the surviving MultiXact members. Note that it
5007 * isn't absolutely necessary in the latter case, but doing so
5008 * is simpler.
5009 */
5010 }
5011 else
5012 {
5013 /* wait for regular transaction to end, or die trying */
5014 switch (wait_policy)
5015 {
5016 case LockWaitBlock:
5017 XactLockTableWait(xwait, relation, &tuple->t_self,
5018 XLTW_Lock);
5019 break;
5020 case LockWaitSkip:
5021 if (!ConditionalXactLockTableWait(xwait, false))
5022 {
5023 result = TM_WouldBlock;
5024 /* recovery code expects to have buffer lock held */
5026 goto failed;
5027 }
5028 break;
5029 case LockWaitError:
5031 ereport(ERROR,
5032 (errcode(ERRCODE_LOCK_NOT_AVAILABLE),
5033 errmsg("could not obtain lock on row in relation \"%s\"",
5034 RelationGetRelationName(relation))));
5035 break;
5036 }
5037 }
5038
5039 /* if there are updates, follow the update chain */
5040 if (follow_updates && !HEAP_XMAX_IS_LOCKED_ONLY(infomask))
5041 {
5042 TM_Result res;
5043
5044 res = heap_lock_updated_tuple(relation, tuple, &t_ctid,
5046 mode);
5047 if (res != TM_Ok)
5048 {
5049 result = res;
5050 /* recovery code expects to have buffer lock held */
5052 goto failed;
5053 }
5054 }
5055
5057
5058 /*
5059 * xwait is done, but if xwait had just locked the tuple then some
5060 * other xact could update this tuple before we get to this point.
5061 * Check for xmax change, and start over if so.
5062 */
5063 if (xmax_infomask_changed(tuple->t_data->t_infomask, infomask) ||
5065 xwait))
5066 goto l3;
5067
5068 if (!(infomask & HEAP_XMAX_IS_MULTI))
5069 {
5070 /*
5071 * Otherwise check if it committed or aborted. Note we cannot
5072 * be here if the tuple was only locked by somebody who didn't
5073 * conflict with us; that would have been handled above. So
5074 * that transaction must necessarily be gone by now. But
5075 * don't check for this in the multixact case, because some
5076 * locker transactions might still be running.
5077 */
5078 UpdateXmaxHintBits(tuple->t_data, *buffer, xwait);
5079 }
5080 }
5081
5082 /* By here, we're certain that we hold buffer exclusive lock again */
5083
5084 /*
5085 * We may lock if previous xmax aborted, or if it committed but only
5086 * locked the tuple without updating it; or if we didn't have to wait
5087 * at all for whatever reason.
5088 */
5089 if (!require_sleep ||
5090 (tuple->t_data->t_infomask & HEAP_XMAX_INVALID) ||
5093 result = TM_Ok;
5094 else if (!ItemPointerEquals(&tuple->t_self, &tuple->t_data->t_ctid))
5095 result = TM_Updated;
5096 else
5097 result = TM_Deleted;
5098 }
5099
5100failed:
5101 if (result != TM_Ok)
5102 {
5103 Assert(result == TM_SelfModified || result == TM_Updated ||
5104 result == TM_Deleted || result == TM_WouldBlock);
5105
5106 /*
5107 * When locking a tuple under LockWaitSkip semantics and we fail with
5108 * TM_WouldBlock above, it's possible for concurrent transactions to
5109 * release the lock and set HEAP_XMAX_INVALID in the meantime. So
5110 * this assert is slightly different from the equivalent one in
5111 * heap_delete and heap_update.
5112 */
5113 Assert((result == TM_WouldBlock) ||
5114 !(tuple->t_data->t_infomask & HEAP_XMAX_INVALID));
5115 Assert(result != TM_Updated ||
5116 !ItemPointerEquals(&tuple->t_self, &tuple->t_data->t_ctid));
5117 tmfd->ctid = tuple->t_data->t_ctid;
5118 tmfd->xmax = HeapTupleHeaderGetUpdateXid(tuple->t_data);
5119 if (result == TM_SelfModified)
5120 tmfd->cmax = HeapTupleHeaderGetCmax(tuple->t_data);
5121 else
5122 tmfd->cmax = InvalidCommandId;
5123 goto out_locked;
5124 }
5125
5126 /*
5127 * If we didn't pin the visibility map page and the page has become all
5128 * visible while we were busy locking the buffer, or during some
5129 * subsequent window during which we had it unlocked, we'll have to unlock
5130 * and re-lock, to avoid holding the buffer lock across I/O. That's a bit
5131 * unfortunate, especially since we'll now have to recheck whether the
5132 * tuple has been locked or updated under us, but hopefully it won't
5133 * happen very often.
5134 */
5135 if (vmbuffer == InvalidBuffer && PageIsAllVisible(page))
5136 {
5138 visibilitymap_pin(relation, block, &vmbuffer);
5140 goto l3;
5141 }
5142
5143 xmax = HeapTupleHeaderGetRawXmax(tuple->t_data);
5144 old_infomask = tuple->t_data->t_infomask;
5145
5146 /*
5147 * If this is the first possibly-multixact-able operation in the current
5148 * transaction, set my per-backend OldestMemberMXactId setting. We can be
5149 * certain that the transaction will never become a member of any older
5150 * MultiXactIds than that. (We have to do this even if we end up just
5151 * using our own TransactionId below, since some other backend could
5152 * incorporate our XID into a MultiXact immediately afterwards.)
5153 */
5155
5156 /*
5157 * Compute the new xmax and infomask to store into the tuple. Note we do
5158 * not modify the tuple just yet, because that would leave it in the wrong
5159 * state if multixact.c elogs.
5160 */
5161 compute_new_xmax_infomask(xmax, old_infomask, tuple->t_data->t_infomask2,
5162 GetCurrentTransactionId(), mode, false,
5163 &xid, &new_infomask, &new_infomask2);
5164
5166
5167 /*
5168 * Store transaction information of xact locking the tuple.
5169 *
5170 * Note: Cmax is meaningless in this context, so don't set it; this avoids
5171 * possibly generating a useless combo CID. Moreover, if we're locking a
5172 * previously updated tuple, it's important to preserve the Cmax.
5173 *
5174 * Also reset the HOT UPDATE bit, but only if there's no update; otherwise
5175 * we would break the HOT chain.
5176 */
5177 tuple->t_data->t_infomask &= ~HEAP_XMAX_BITS;
5178 tuple->t_data->t_infomask2 &= ~HEAP_KEYS_UPDATED;
5179 tuple->t_data->t_infomask |= new_infomask;
5180 tuple->t_data->t_infomask2 |= new_infomask2;
5181 if (HEAP_XMAX_IS_LOCKED_ONLY(new_infomask))
5183 HeapTupleHeaderSetXmax(tuple->t_data, xid);
5184
5185 /*
5186 * Make sure there is no forward chain link in t_ctid. Note that in the
5187 * cases where the tuple has been updated, we must not overwrite t_ctid,
5188 * because it was set by the updater. Moreover, if the tuple has been
5189 * updated, we need to follow the update chain to lock the new versions of
5190 * the tuple as well.
5191 */
5192 if (HEAP_XMAX_IS_LOCKED_ONLY(new_infomask))
5193 tuple->t_data->t_ctid = *tid;
5194
5195 /* Clear only the all-frozen bit on visibility map if needed */
5196 if (PageIsAllVisible(page) &&
5197 visibilitymap_clear(relation, block, vmbuffer,
5199 cleared_all_frozen = true;
5200
5201
5202 MarkBufferDirty(*buffer);
5203
5204 /*
5205 * XLOG stuff. You might think that we don't need an XLOG record because
5206 * there is no state change worth restoring after a crash. You would be
5207 * wrong however: we have just written either a TransactionId or a
5208 * MultiXactId that may never have been seen on disk before, and we need
5209 * to make sure that there are XLOG entries covering those ID numbers.
5210 * Else the same IDs might be re-used after a crash, which would be
5211 * disastrous if this page made it to disk before the crash. Essentially
5212 * we have to enforce the WAL log-before-data rule even in this case.
5213 * (Also, in a PITR log-shipping or 2PC environment, we have to have XLOG
5214 * entries for everything anyway.)
5215 */
5216 if (RelationNeedsWAL(relation))
5217 {
5218 xl_heap_lock xlrec;
5219 XLogRecPtr recptr;
5220
5223
5224 xlrec.offnum = ItemPointerGetOffsetNumber(&tuple->t_self);
5225 xlrec.xmax = xid;
5226 xlrec.infobits_set = compute_infobits(new_infomask,
5227 tuple->t_data->t_infomask2);
5228 xlrec.flags = cleared_all_frozen ? XLH_LOCK_ALL_FROZEN_CLEARED : 0;
5230
5231 /* we don't decode row locks atm, so no need to log the origin */
5232
5233 recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_LOCK);
5234
5235 PageSetLSN(page, recptr);
5236 }
5237
5239
5240 result = TM_Ok;
5241
5242out_locked:
5244
5245out_unlocked:
5246 if (BufferIsValid(vmbuffer))
5247 ReleaseBuffer(vmbuffer);
5248
5249 /*
5250 * Don't update the visibility map here. Locking a tuple doesn't change
5251 * visibility info.
5252 */
5253
5254 /*
5255 * Now that we have successfully marked the tuple as locked, we can
5256 * release the lmgr tuple lock, if we had it.
5257 */
5258 if (have_tuple_lock)
5259 UnlockTupleTuplock(relation, tid, mode);
5260
5261 return result;
5262}
static bool ConditionalMultiXactIdWait(MultiXactId multi, MultiXactStatus status, uint16 infomask, Relation rel, int *remaining, bool logLockFailure)
Definition: heapam.c:7795
static TM_Result heap_lock_updated_tuple(Relation rel, HeapTuple tuple, ItemPointer ctid, TransactionId xid, LockTupleMode mode)
Definition: heapam.c:6043
#define XLH_LOCK_ALL_FROZEN_CLEARED
Definition: heapam_xlog.h:392
#define XLOG_HEAP_LOCK
Definition: heapam_xlog.h:39
#define SizeOfHeapLock
Definition: heapam_xlog.h:403
static void ItemPointerCopy(const ItemPointerData *fromPointer, ItemPointerData *toPointer)
Definition: itemptr.h:172
@ XLTW_Lock
Definition: lmgr.h:29
uint8 infobits_set
Definition: heapam_xlog.h:399
OffsetNumber offnum
Definition: heapam_xlog.h:398
TransactionId xmax
Definition: heapam_xlog.h:397
@ TM_WouldBlock
Definition: tableam.h:103
#define VISIBILITYMAP_ALL_FROZEN

References Assert(), BUFFER_LOCK_EXCLUSIVE, BUFFER_LOCK_UNLOCK, BufferGetPage(), BufferIsValid(), TM_FailureData::cmax, compute_infobits(), compute_new_xmax_infomask(), ConditionalMultiXactIdWait(), ConditionalXactLockTableWait(), TM_FailureData::ctid, DoesMultiXactIdConflict(), elog, END_CRIT_SECTION, ereport, errcode(), errmsg(), ERROR, xl_heap_lock::flags, get_mxact_status_for_lock(), GetCurrentTransactionId(), GetMultiXactIdMembers(), heap_acquire_tuplock(), HEAP_KEYS_UPDATED, heap_lock_updated_tuple(), HEAP_XMAX_INVALID, HEAP_XMAX_IS_EXCL_LOCKED(), HEAP_XMAX_IS_KEYSHR_LOCKED(), HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HEAP_XMAX_IS_SHR_LOCKED(), HeapTupleHeaderClearHotUpdated(), HeapTupleHeaderGetCmax(), HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderIsOnlyLocked(), HeapTupleHeaderSetXmax(), HeapTupleSatisfiesUpdate(), i, xl_heap_lock::infobits_set, InvalidBuffer, InvalidCommandId, ItemIdGetLength, ItemIdIsNormal, ItemPointerCopy(), ItemPointerEquals(), ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), LockBuffer(), LockTupleExclusive, LockTupleKeyShare, LockTupleNoKeyExclusive, LockTupleShare, LockWaitBlock, LockWaitError, LockWaitSkip, log_lock_failures, MarkBufferDirty(), mode, MultiXactIdSetOldestMember(), MultiXactIdWait(), MultiXactStatusNoKeyUpdate, xl_heap_lock::offnum, PageGetItem(), PageGetItemId(), PageIsAllVisible(), PageSetLSN(), pfree(), ReadBuffer(), REGBUF_STANDARD, RelationGetRelationName, RelationGetRelid, RelationNeedsWAL, ReleaseBuffer(), SizeOfHeapLock, START_CRIT_SECTION, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, HeapTupleHeaderData::t_infomask, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_self, HeapTupleData::t_tableOid, TM_BeingModified, TM_Deleted, TM_Invisible, TM_Ok, TM_SelfModified, TM_Updated, TM_WouldBlock, TransactionIdEquals, TransactionIdIsCurrentTransactionId(), TUPLOCK_from_mxstatus, UnlockTupleTuplock, UpdateXmaxHintBits(), VISIBILITYMAP_ALL_FROZEN, visibilitymap_clear(), visibilitymap_pin(), XactLockTableWait(), XLH_LOCK_ALL_FROZEN_CLEARED, XLOG_HEAP_LOCK, XLogBeginInsert(), XLogInsert(), XLogRegisterBuffer(), XLogRegisterData(), XLTW_Lock, xl_heap_lock::xmax, TM_FailureData::xmax, and xmax_infomask_changed().

Referenced by heapam_tuple_lock().

◆ heap_lock_updated_tuple()

static TM_Result heap_lock_updated_tuple ( Relation  rel,
HeapTuple  tuple,
ItemPointer  ctid,
TransactionId  xid,
LockTupleMode  mode 
)
static

Definition at line 6043 of file heapam.c.

6045{
6046 /*
6047 * If the tuple has not been updated, or has moved into another partition
6048 * (effectively a delete) stop here.
6049 */
6051 !ItemPointerEquals(&tuple->t_self, ctid))
6052 {
6053 /*
6054 * If this is the first possibly-multixact-able operation in the
6055 * current transaction, set my per-backend OldestMemberMXactId
6056 * setting. We can be certain that the transaction will never become a
6057 * member of any older MultiXactIds than that. (We have to do this
6058 * even if we end up just using our own TransactionId below, since
6059 * some other backend could incorporate our XID into a MultiXact
6060 * immediately afterwards.)
6061 */
6063
6064 return heap_lock_updated_tuple_rec(rel, ctid, xid, mode);
6065 }
6066
6067 /* nothing to lock */
6068 return TM_Ok;
6069}
static TM_Result heap_lock_updated_tuple_rec(Relation rel, ItemPointer tid, TransactionId xid, LockTupleMode mode)
Definition: heapam.c:5698

References heap_lock_updated_tuple_rec(), HeapTupleHeaderIndicatesMovedPartitions(), ItemPointerEquals(), mode, MultiXactIdSetOldestMember(), HeapTupleData::t_data, HeapTupleData::t_self, and TM_Ok.

Referenced by heap_lock_tuple().

◆ heap_lock_updated_tuple_rec()

static TM_Result heap_lock_updated_tuple_rec ( Relation  rel,
ItemPointer  tid,
TransactionId  xid,
LockTupleMode  mode 
)
static

Definition at line 5698 of file heapam.c.

5700{
5701 TM_Result result;
5702 ItemPointerData tupid;
5703 HeapTupleData mytup;
5704 Buffer buf;
5705 uint16 new_infomask,
5706 new_infomask2,
5707 old_infomask,
5708 old_infomask2;
5709 TransactionId xmax,
5710 new_xmax;
5712 bool cleared_all_frozen = false;
5713 bool pinned_desired_page;
5714 Buffer vmbuffer = InvalidBuffer;
5715 BlockNumber block;
5716
5717 ItemPointerCopy(tid, &tupid);
5718
5719 for (;;)
5720 {
5721 new_infomask = 0;
5722 new_xmax = InvalidTransactionId;
5723 block = ItemPointerGetBlockNumber(&tupid);
5724 ItemPointerCopy(&tupid, &(mytup.t_self));
5725
5726 if (!heap_fetch(rel, SnapshotAny, &mytup, &buf, false))
5727 {
5728 /*
5729 * if we fail to find the updated version of the tuple, it's
5730 * because it was vacuumed/pruned away after its creator
5731 * transaction aborted. So behave as if we got to the end of the
5732 * chain, and there's no further tuple to lock: return success to
5733 * caller.
5734 */
5735 result = TM_Ok;
5736 goto out_unlocked;
5737 }
5738
5739l4:
5741
5742 /*
5743 * Before locking the buffer, pin the visibility map page if it
5744 * appears to be necessary. Since we haven't got the lock yet,
5745 * someone else might be in the middle of changing this, so we'll need
5746 * to recheck after we have the lock.
5747 */
5749 {
5750 visibilitymap_pin(rel, block, &vmbuffer);
5751 pinned_desired_page = true;
5752 }
5753 else
5754 pinned_desired_page = false;
5755
5757
5758 /*
5759 * If we didn't pin the visibility map page and the page has become
5760 * all visible while we were busy locking the buffer, we'll have to
5761 * unlock and re-lock, to avoid holding the buffer lock across I/O.
5762 * That's a bit unfortunate, but hopefully shouldn't happen often.
5763 *
5764 * Note: in some paths through this function, we will reach here
5765 * holding a pin on a vm page that may or may not be the one matching
5766 * this page. If this page isn't all-visible, we won't use the vm
5767 * page, but we hold onto such a pin till the end of the function.
5768 */
5769 if (!pinned_desired_page && PageIsAllVisible(BufferGetPage(buf)))
5770 {
5772 visibilitymap_pin(rel, block, &vmbuffer);
5774 }
5775
5776 /*
5777 * Check the tuple XMIN against prior XMAX, if any. If we reached the
5778 * end of the chain, we're done, so return success.
5779 */
5780 if (TransactionIdIsValid(priorXmax) &&
5782 priorXmax))
5783 {
5784 result = TM_Ok;
5785 goto out_locked;
5786 }
5787
5788 /*
5789 * Also check Xmin: if this tuple was created by an aborted
5790 * (sub)transaction, then we already locked the last live one in the
5791 * chain, thus we're done, so return success.
5792 */
5794 {
5795 result = TM_Ok;
5796 goto out_locked;
5797 }
5798
5799 old_infomask = mytup.t_data->t_infomask;
5800 old_infomask2 = mytup.t_data->t_infomask2;
5801 xmax = HeapTupleHeaderGetRawXmax(mytup.t_data);
5802
5803 /*
5804 * If this tuple version has been updated or locked by some concurrent
5805 * transaction(s), what we do depends on whether our lock mode
5806 * conflicts with what those other transactions hold, and also on the
5807 * status of them.
5808 */
5809 if (!(old_infomask & HEAP_XMAX_INVALID))
5810 {
5811 TransactionId rawxmax;
5812 bool needwait;
5813
5814 rawxmax = HeapTupleHeaderGetRawXmax(mytup.t_data);
5815 if (old_infomask & HEAP_XMAX_IS_MULTI)
5816 {
5817 int nmembers;
5818 int i;
5819 MultiXactMember *members;
5820
5821 /*
5822 * We don't need a test for pg_upgrade'd tuples: this is only
5823 * applied to tuples after the first in an update chain. Said
5824 * first tuple in the chain may well be locked-in-9.2-and-
5825 * pg_upgraded, but that one was already locked by our caller,
5826 * not us; and any subsequent ones cannot be because our
5827 * caller must necessarily have obtained a snapshot later than
5828 * the pg_upgrade itself.
5829 */
5831
5832 nmembers = GetMultiXactIdMembers(rawxmax, &members, false,
5833 HEAP_XMAX_IS_LOCKED_ONLY(old_infomask));
5834 for (i = 0; i < nmembers; i++)
5835 {
5836 result = test_lockmode_for_conflict(members[i].status,
5837 members[i].xid,
5838 mode,
5839 &mytup,
5840 &needwait);
5841
5842 /*
5843 * If the tuple was already locked by ourselves in a
5844 * previous iteration of this (say heap_lock_tuple was
5845 * forced to restart the locking loop because of a change
5846 * in xmax), then we hold the lock already on this tuple
5847 * version and we don't need to do anything; and this is
5848 * not an error condition either. We just need to skip
5849 * this tuple and continue locking the next version in the
5850 * update chain.
5851 */
5852 if (result == TM_SelfModified)
5853 {
5854 pfree(members);
5855 goto next;
5856 }
5857
5858 if (needwait)
5859 {
5861 XactLockTableWait(members[i].xid, rel,
5862 &mytup.t_self,
5864 pfree(members);
5865 goto l4;
5866 }
5867 if (result != TM_Ok)
5868 {
5869 pfree(members);
5870 goto out_locked;
5871 }
5872 }
5873 if (members)
5874 pfree(members);
5875 }
5876 else
5877 {
5878 MultiXactStatus status;
5879
5880 /*
5881 * For a non-multi Xmax, we first need to compute the
5882 * corresponding MultiXactStatus by using the infomask bits.
5883 */
5884 if (HEAP_XMAX_IS_LOCKED_ONLY(old_infomask))
5885 {
5886 if (HEAP_XMAX_IS_KEYSHR_LOCKED(old_infomask))
5888 else if (HEAP_XMAX_IS_SHR_LOCKED(old_infomask))
5889 status = MultiXactStatusForShare;
5890 else if (HEAP_XMAX_IS_EXCL_LOCKED(old_infomask))
5891 {
5892 if (old_infomask2 & HEAP_KEYS_UPDATED)
5893 status = MultiXactStatusForUpdate;
5894 else
5896 }
5897 else
5898 {
5899 /*
5900 * LOCK_ONLY present alone (a pg_upgraded tuple marked
5901 * as share-locked in the old cluster) shouldn't be
5902 * seen in the middle of an update chain.
5903 */
5904 elog(ERROR, "invalid lock status in tuple");
5905 }
5906 }
5907 else
5908 {
5909 /* it's an update, but which kind? */
5910 if (old_infomask2 & HEAP_KEYS_UPDATED)
5911 status = MultiXactStatusUpdate;
5912 else
5914 }
5915
5916 result = test_lockmode_for_conflict(status, rawxmax, mode,
5917 &mytup, &needwait);
5918
5919 /*
5920 * If the tuple was already locked by ourselves in a previous
5921 * iteration of this (say heap_lock_tuple was forced to
5922 * restart the locking loop because of a change in xmax), then
5923 * we hold the lock already on this tuple version and we don't
5924 * need to do anything; and this is not an error condition
5925 * either. We just need to skip this tuple and continue
5926 * locking the next version in the update chain.
5927 */
5928 if (result == TM_SelfModified)
5929 goto next;
5930
5931 if (needwait)
5932 {
5934 XactLockTableWait(rawxmax, rel, &mytup.t_self,
5936 goto l4;
5937 }
5938 if (result != TM_Ok)
5939 {
5940 goto out_locked;
5941 }
5942 }
5943 }
5944
5945 /* compute the new Xmax and infomask values for the tuple ... */
5946 compute_new_xmax_infomask(xmax, old_infomask, mytup.t_data->t_infomask2,
5947 xid, mode, false,
5948 &new_xmax, &new_infomask, &new_infomask2);
5949
5951 visibilitymap_clear(rel, block, vmbuffer,
5953 cleared_all_frozen = true;
5954
5956
5957 /* ... and set them */
5958 HeapTupleHeaderSetXmax(mytup.t_data, new_xmax);
5959 mytup.t_data->t_infomask &= ~HEAP_XMAX_BITS;
5960 mytup.t_data->t_infomask2 &= ~HEAP_KEYS_UPDATED;
5961 mytup.t_data->t_infomask |= new_infomask;
5962 mytup.t_data->t_infomask2 |= new_infomask2;
5963
5965
5966 /* XLOG stuff */
5967 if (RelationNeedsWAL(rel))
5968 {
5970 XLogRecPtr recptr;
5971 Page page = BufferGetPage(buf);
5972
5975
5977 xlrec.xmax = new_xmax;
5978 xlrec.infobits_set = compute_infobits(new_infomask, new_infomask2);
5979 xlrec.flags =
5980 cleared_all_frozen ? XLH_LOCK_ALL_FROZEN_CLEARED : 0;
5981
5983
5984 recptr = XLogInsert(RM_HEAP2_ID, XLOG_HEAP2_LOCK_UPDATED);
5985
5986 PageSetLSN(page, recptr);
5987 }
5988
5990
5991next:
5992 /* if we find the end of update chain, we're done. */
5993 if (mytup.t_data->t_infomask & HEAP_XMAX_INVALID ||
5995 ItemPointerEquals(&mytup.t_self, &mytup.t_data->t_ctid) ||
5997 {
5998 result = TM_Ok;
5999 goto out_locked;
6000 }
6001
6002 /* tail recursion */
6003 priorXmax = HeapTupleHeaderGetUpdateXid(mytup.t_data);
6004 ItemPointerCopy(&(mytup.t_data->t_ctid), &tupid);
6006 }
6007
6008 result = TM_Ok;
6009
6010out_locked:
6012
6013out_unlocked:
6014 if (vmbuffer != InvalidBuffer)
6015 ReleaseBuffer(vmbuffer);
6016
6017 return result;
6018}
static int32 next
Definition: blutils.c:224
bool heap_fetch(Relation relation, Snapshot snapshot, HeapTuple tuple, Buffer *userbuf, bool keep_buf)
Definition: heapam.c:1605
static TM_Result test_lockmode_for_conflict(MultiXactStatus status, TransactionId xid, LockTupleMode mode, HeapTuple tup, bool *needwait)
Definition: heapam.c:5607
#define SizeOfHeapLockUpdated
Definition: heapam_xlog.h:414
#define XLOG_HEAP2_LOCK_UPDATED
Definition: heapam_xlog.h:65
@ XLTW_LockUpdated
Definition: lmgr.h:30
#define SnapshotAny
Definition: snapmgr.h:33
TransactionId xmax
Definition: heapam_xlog.h:408
OffsetNumber offnum
Definition: heapam_xlog.h:409

References Assert(), buf, BUFFER_LOCK_EXCLUSIVE, BUFFER_LOCK_UNLOCK, BufferGetPage(), CHECK_FOR_INTERRUPTS, compute_infobits(), compute_new_xmax_infomask(), elog, END_CRIT_SECTION, ERROR, xl_heap_lock_updated::flags, GetMultiXactIdMembers(), heap_fetch(), HEAP_KEYS_UPDATED, HEAP_LOCKED_UPGRADED(), HEAP_XMAX_INVALID, HEAP_XMAX_IS_EXCL_LOCKED(), HEAP_XMAX_IS_KEYSHR_LOCKED(), HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HEAP_XMAX_IS_SHR_LOCKED(), HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderGetXmin(), HeapTupleHeaderIndicatesMovedPartitions(), HeapTupleHeaderIsOnlyLocked(), HeapTupleHeaderSetXmax(), i, xl_heap_lock_updated::infobits_set, InvalidBuffer, InvalidTransactionId, ItemPointerCopy(), ItemPointerEquals(), ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), LockBuffer(), MarkBufferDirty(), mode, MultiXactStatusForKeyShare, MultiXactStatusForNoKeyUpdate, MultiXactStatusForShare, MultiXactStatusForUpdate, MultiXactStatusNoKeyUpdate, MultiXactStatusUpdate, next, xl_heap_lock_updated::offnum, PageIsAllVisible(), PageSetLSN(), pfree(), REGBUF_STANDARD, RelationNeedsWAL, ReleaseBuffer(), SizeOfHeapLockUpdated, SnapshotAny, START_CRIT_SECTION, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, HeapTupleHeaderData::t_infomask, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_self, test_lockmode_for_conflict(), TM_Ok, TM_SelfModified, TransactionIdDidAbort(), TransactionIdEquals, TransactionIdIsValid, UnlockReleaseBuffer(), VISIBILITYMAP_ALL_FROZEN, visibilitymap_clear(), visibilitymap_pin(), XactLockTableWait(), XLH_LOCK_ALL_FROZEN_CLEARED, XLOG_HEAP2_LOCK_UPDATED, XLogBeginInsert(), XLogInsert(), XLogRegisterBuffer(), XLogRegisterData(), XLTW_LockUpdated, and xl_heap_lock_updated::xmax.

Referenced by heap_lock_updated_tuple().

◆ heap_multi_insert()

void heap_multi_insert ( Relation  relation,
TupleTableSlot **  slots,
int  ntuples,
CommandId  cid,
int  options,
BulkInsertState  bistate 
)

Definition at line 2359 of file heapam.c.

2361{
2363 HeapTuple *heaptuples;
2364 int i;
2365 int ndone;
2366 PGAlignedBlock scratch;
2367 Page page;
2368 Buffer vmbuffer = InvalidBuffer;
2369 bool needwal;
2370 Size saveFreeSpace;
2371 bool need_tuple_data = RelationIsLogicallyLogged(relation);
2372 bool need_cids = RelationIsAccessibleInLogicalDecoding(relation);
2373 bool starting_with_empty_page = false;
2374 int npages = 0;
2375 int npages_used = 0;
2376
2377 /* currently not needed (thus unsupported) for heap_multi_insert() */
2379
2380 AssertHasSnapshotForToast(relation);
2381
2382 needwal = RelationNeedsWAL(relation);
2383 saveFreeSpace = RelationGetTargetPageFreeSpace(relation,
2385
2386 /* Toast and set header data in all the slots */
2387 heaptuples = palloc(ntuples * sizeof(HeapTuple));
2388 for (i = 0; i < ntuples; i++)
2389 {
2390 HeapTuple tuple;
2391
2392 tuple = ExecFetchSlotHeapTuple(slots[i], true, NULL);
2393 slots[i]->tts_tableOid = RelationGetRelid(relation);
2394 tuple->t_tableOid = slots[i]->tts_tableOid;
2395 heaptuples[i] = heap_prepare_insert(relation, tuple, xid, cid,
2396 options);
2397 }
2398
2399 /*
2400 * We're about to do the actual inserts -- but check for conflict first,
2401 * to minimize the possibility of having to roll back work we've just
2402 * done.
2403 *
2404 * A check here does not definitively prevent a serialization anomaly;
2405 * that check MUST be done at least past the point of acquiring an
2406 * exclusive buffer content lock on every buffer that will be affected,
2407 * and MAY be done after all inserts are reflected in the buffers and
2408 * those locks are released; otherwise there is a race condition. Since
2409 * multiple buffers can be locked and unlocked in the loop below, and it
2410 * would not be feasible to identify and lock all of those buffers before
2411 * the loop, we must do a final check at the end.
2412 *
2413 * The check here could be omitted with no loss of correctness; it is
2414 * present strictly as an optimization.
2415 *
2416 * For heap inserts, we only need to check for table-level SSI locks. Our
2417 * new tuples can't possibly conflict with existing tuple locks, and heap
2418 * page locks are only consolidated versions of tuple locks; they do not
2419 * lock "gaps" as index page locks do. So we don't need to specify a
2420 * buffer when making the call, which makes for a faster check.
2421 */
2423
2424 ndone = 0;
2425 while (ndone < ntuples)
2426 {
2427 Buffer buffer;
2428 bool all_visible_cleared = false;
2429 bool all_frozen_set = false;
2430 int nthispage;
2431
2433
2434 /*
2435 * Compute number of pages needed to fit the to-be-inserted tuples in
2436 * the worst case. This will be used to determine how much to extend
2437 * the relation by in RelationGetBufferForTuple(), if needed. If we
2438 * filled a prior page from scratch, we can just update our last
2439 * computation, but if we started with a partially filled page,
2440 * recompute from scratch, the number of potentially required pages
2441 * can vary due to tuples needing to fit onto the page, page headers
2442 * etc.
2443 */
2444 if (ndone == 0 || !starting_with_empty_page)
2445 {
2446 npages = heap_multi_insert_pages(heaptuples, ndone, ntuples,
2447 saveFreeSpace);
2448 npages_used = 0;
2449 }
2450 else
2451 npages_used++;
2452
2453 /*
2454 * Find buffer where at least the next tuple will fit. If the page is
2455 * all-visible, this will also pin the requisite visibility map page.
2456 *
2457 * Also pin visibility map page if COPY FREEZE inserts tuples into an
2458 * empty page. See all_frozen_set below.
2459 */
2460 buffer = RelationGetBufferForTuple(relation, heaptuples[ndone]->t_len,
2461 InvalidBuffer, options, bistate,
2462 &vmbuffer, NULL,
2463 npages - npages_used);
2464 page = BufferGetPage(buffer);
2465
2466 starting_with_empty_page = PageGetMaxOffsetNumber(page) == 0;
2467
2468 if (starting_with_empty_page && (options & HEAP_INSERT_FROZEN))
2469 all_frozen_set = true;
2470
2471 /* NO EREPORT(ERROR) from here till changes are logged */
2473
2474 /*
2475 * RelationGetBufferForTuple has ensured that the first tuple fits.
2476 * Put that on the page, and then as many other tuples as fit.
2477 */
2478 RelationPutHeapTuple(relation, buffer, heaptuples[ndone], false);
2479
2480 /*
2481 * For logical decoding we need combo CIDs to properly decode the
2482 * catalog.
2483 */
2484 if (needwal && need_cids)
2485 log_heap_new_cid(relation, heaptuples[ndone]);
2486
2487 for (nthispage = 1; ndone + nthispage < ntuples; nthispage++)
2488 {
2489 HeapTuple heaptup = heaptuples[ndone + nthispage];
2490
2491 if (PageGetHeapFreeSpace(page) < MAXALIGN(heaptup->t_len) + saveFreeSpace)
2492 break;
2493
2494 RelationPutHeapTuple(relation, buffer, heaptup, false);
2495
2496 /*
2497 * For logical decoding we need combo CIDs to properly decode the
2498 * catalog.
2499 */
2500 if (needwal && need_cids)
2501 log_heap_new_cid(relation, heaptup);
2502 }
2503
2504 /*
2505 * If the page is all visible, need to clear that, unless we're only
2506 * going to add further frozen rows to it.
2507 *
2508 * If we're only adding already frozen rows to a previously empty
2509 * page, mark it as all-visible.
2510 */
2512 {
2513 all_visible_cleared = true;
2514 PageClearAllVisible(page);
2515 visibilitymap_clear(relation,
2516 BufferGetBlockNumber(buffer),
2517 vmbuffer, VISIBILITYMAP_VALID_BITS);
2518 }
2519 else if (all_frozen_set)
2520 PageSetAllVisible(page);
2521
2522 /*
2523 * XXX Should we set PageSetPrunable on this page ? See heap_insert()
2524 */
2525
2526 MarkBufferDirty(buffer);
2527
2528 /* XLOG stuff */
2529 if (needwal)
2530 {
2531 XLogRecPtr recptr;
2532 xl_heap_multi_insert *xlrec;
2534 char *tupledata;
2535 int totaldatalen;
2536 char *scratchptr = scratch.data;
2537 bool init;
2538 int bufflags = 0;
2539
2540 /*
2541 * If the page was previously empty, we can reinit the page
2542 * instead of restoring the whole thing.
2543 */
2544 init = starting_with_empty_page;
2545
2546 /* allocate xl_heap_multi_insert struct from the scratch area */
2547 xlrec = (xl_heap_multi_insert *) scratchptr;
2548 scratchptr += SizeOfHeapMultiInsert;
2549
2550 /*
2551 * Allocate offsets array. Unless we're reinitializing the page,
2552 * in that case the tuples are stored in order starting at
2553 * FirstOffsetNumber and we don't need to store the offsets
2554 * explicitly.
2555 */
2556 if (!init)
2557 scratchptr += nthispage * sizeof(OffsetNumber);
2558
2559 /* the rest of the scratch space is used for tuple data */
2560 tupledata = scratchptr;
2561
2562 /* check that the mutually exclusive flags are not both set */
2563 Assert(!(all_visible_cleared && all_frozen_set));
2564
2565 xlrec->flags = 0;
2566 if (all_visible_cleared)
2568 if (all_frozen_set)
2570
2571 xlrec->ntuples = nthispage;
2572
2573 /*
2574 * Write out an xl_multi_insert_tuple and the tuple data itself
2575 * for each tuple.
2576 */
2577 for (i = 0; i < nthispage; i++)
2578 {
2579 HeapTuple heaptup = heaptuples[ndone + i];
2580 xl_multi_insert_tuple *tuphdr;
2581 int datalen;
2582
2583 if (!init)
2584 xlrec->offsets[i] = ItemPointerGetOffsetNumber(&heaptup->t_self);
2585 /* xl_multi_insert_tuple needs two-byte alignment. */
2586 tuphdr = (xl_multi_insert_tuple *) SHORTALIGN(scratchptr);
2587 scratchptr = ((char *) tuphdr) + SizeOfMultiInsertTuple;
2588
2589 tuphdr->t_infomask2 = heaptup->t_data->t_infomask2;
2590 tuphdr->t_infomask = heaptup->t_data->t_infomask;
2591 tuphdr->t_hoff = heaptup->t_data->t_hoff;
2592
2593 /* write bitmap [+ padding] [+ oid] + data */
2594 datalen = heaptup->t_len - SizeofHeapTupleHeader;
2595 memcpy(scratchptr,
2596 (char *) heaptup->t_data + SizeofHeapTupleHeader,
2597 datalen);
2598 tuphdr->datalen = datalen;
2599 scratchptr += datalen;
2600 }
2601 totaldatalen = scratchptr - tupledata;
2602 Assert((scratchptr - scratch.data) < BLCKSZ);
2603
2604 if (need_tuple_data)
2606
2607 /*
2608 * Signal that this is the last xl_heap_multi_insert record
2609 * emitted by this call to heap_multi_insert(). Needed for logical
2610 * decoding so it knows when to cleanup temporary data.
2611 */
2612 if (ndone + nthispage == ntuples)
2614
2615 if (init)
2616 {
2617 info |= XLOG_HEAP_INIT_PAGE;
2618 bufflags |= REGBUF_WILL_INIT;
2619 }
2620
2621 /*
2622 * If we're doing logical decoding, include the new tuple data
2623 * even if we take a full-page image of the page.
2624 */
2625 if (need_tuple_data)
2626 bufflags |= REGBUF_KEEP_DATA;
2627
2629 XLogRegisterData(xlrec, tupledata - scratch.data);
2630 XLogRegisterBuffer(0, buffer, REGBUF_STANDARD | bufflags);
2631
2632 XLogRegisterBufData(0, tupledata, totaldatalen);
2633
2634 /* filtering by origin on a row level is much more efficient */
2636
2637 recptr = XLogInsert(RM_HEAP2_ID, info);
2638
2639 PageSetLSN(page, recptr);
2640 }
2641
2643
2644 /*
2645 * If we've frozen everything on the page, update the visibilitymap.
2646 * We're already holding pin on the vmbuffer.
2647 */
2648 if (all_frozen_set)
2649 {
2650 /*
2651 * It's fine to use InvalidTransactionId here - this is only used
2652 * when HEAP_INSERT_FROZEN is specified, which intentionally
2653 * violates visibility rules.
2654 */
2655 visibilitymap_set(relation, BufferGetBlockNumber(buffer), buffer,
2656 InvalidXLogRecPtr, vmbuffer,
2659 }
2660
2661 UnlockReleaseBuffer(buffer);
2662 ndone += nthispage;
2663
2664 /*
2665 * NB: Only release vmbuffer after inserting all tuples - it's fairly
2666 * likely that we'll insert into subsequent heap pages that are likely
2667 * to use the same vm page.
2668 */
2669 }
2670
2671 /* We're done with inserting all tuples, so release the last vmbuffer. */
2672 if (vmbuffer != InvalidBuffer)
2673 ReleaseBuffer(vmbuffer);
2674
2675 /*
2676 * We're done with the actual inserts. Check for conflicts again, to
2677 * ensure that all rw-conflicts in to these inserts are detected. Without
2678 * this final check, a sequential scan of the heap may have locked the
2679 * table after the "before" check, missing one opportunity to detect the
2680 * conflict, and then scanned the table before the new tuples were there,
2681 * missing the other chance to detect the conflict.
2682 *
2683 * For heap inserts, we only need to check for table-level SSI locks. Our
2684 * new tuples can't possibly conflict with existing tuple locks, and heap
2685 * page locks are only consolidated versions of tuple locks; they do not
2686 * lock "gaps" as index page locks do. So we don't need to specify a
2687 * buffer when making the call.
2688 */
2690
2691 /*
2692 * If tuples are cachable, mark them for invalidation from the caches in
2693 * case we abort. Note it is OK to do this after releasing the buffer,
2694 * because the heaptuples data structure is all in local memory, not in
2695 * the shared buffer.
2696 */
2697 if (IsCatalogRelation(relation))
2698 {
2699 for (i = 0; i < ntuples; i++)
2700 CacheInvalidateHeapTuple(relation, heaptuples[i], NULL);
2701 }
2702
2703 /* copy t_self fields back to the caller's slots */
2704 for (i = 0; i < ntuples; i++)
2705 slots[i]->tts_tid = heaptuples[i]->t_self;
2706
2707 pgstat_count_heap_insert(relation, ntuples);
2708}
Size PageGetHeapFreeSpace(const PageData *page)
Definition: bufpage.c:990
static void PageSetAllVisible(Page page)
Definition: bufpage.h:434
#define MAXALIGN(LEN)
Definition: c.h:810
#define SHORTALIGN(LEN)
Definition: c.h:806
size_t Size
Definition: c.h:610
HeapTuple ExecFetchSlotHeapTuple(TupleTableSlot *slot, bool materialize, bool *shouldFree)
Definition: execTuples.c:1833
static int heap_multi_insert_pages(HeapTuple *heaptuples, int done, int ntuples, Size saveFreeSpace)
Definition: heapam.c:2327
#define HEAP_INSERT_FROZEN
Definition: heapam.h:38
#define SizeOfHeapMultiInsert
Definition: heapam_xlog.h:188
#define XLOG_HEAP2_MULTI_INSERT
Definition: heapam_xlog.h:64
#define XLH_INSERT_LAST_IN_MULTI
Definition: heapam_xlog.h:73
#define XLH_INSERT_ALL_FROZEN_SET
Definition: heapam_xlog.h:79
#define SizeOfMultiInsertTuple
Definition: heapam_xlog.h:199
int init
Definition: isn.c:79
#define RelationGetTargetPageFreeSpace(relation, defaultff)
Definition: rel.h:389
#define HEAP_DEFAULT_FILLFACTOR
Definition: rel.h:360
Oid tts_tableOid
Definition: tuptable.h:129
OffsetNumber offsets[FLEXIBLE_ARRAY_MEMBER]
Definition: heapam_xlog.h:185
uint8 visibilitymap_set(Relation rel, BlockNumber heapBlk, Buffer heapBuf, XLogRecPtr recptr, Buffer vmBuf, TransactionId cutoff_xid, uint8 flags)
#define VISIBILITYMAP_ALL_VISIBLE
#define InvalidXLogRecPtr
Definition: xlogdefs.h:28

References Assert(), AssertHasSnapshotForToast(), BufferGetBlockNumber(), BufferGetPage(), CacheInvalidateHeapTuple(), CHECK_FOR_INTERRUPTS, CheckForSerializableConflictIn(), PGAlignedBlock::data, xl_multi_insert_tuple::datalen, END_CRIT_SECTION, ExecFetchSlotHeapTuple(), xl_heap_multi_insert::flags, GetCurrentTransactionId(), HEAP_DEFAULT_FILLFACTOR, HEAP_INSERT_FROZEN, HEAP_INSERT_NO_LOGICAL, heap_multi_insert_pages(), heap_prepare_insert(), i, init, InvalidBlockNumber, InvalidBuffer, InvalidTransactionId, InvalidXLogRecPtr, IsCatalogRelation(), ItemPointerGetOffsetNumber(), log_heap_new_cid(), MarkBufferDirty(), MAXALIGN, xl_heap_multi_insert::ntuples, xl_heap_multi_insert::offsets, PageClearAllVisible(), PageGetHeapFreeSpace(), PageGetMaxOffsetNumber(), PageIsAllVisible(), PageSetAllVisible(), PageSetLSN(), palloc(), pgstat_count_heap_insert(), REGBUF_KEEP_DATA, REGBUF_STANDARD, REGBUF_WILL_INIT, RelationGetBufferForTuple(), RelationGetRelid, RelationGetTargetPageFreeSpace, RelationIsAccessibleInLogicalDecoding, RelationIsLogicallyLogged, RelationNeedsWAL, RelationPutHeapTuple(), ReleaseBuffer(), SHORTALIGN, SizeOfHeapMultiInsert, SizeofHeapTupleHeader, SizeOfMultiInsertTuple, START_CRIT_SECTION, HeapTupleData::t_data, xl_multi_insert_tuple::t_hoff, HeapTupleHeaderData::t_hoff, xl_multi_insert_tuple::t_infomask, HeapTupleHeaderData::t_infomask, xl_multi_insert_tuple::t_infomask2, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_self, HeapTupleData::t_tableOid, TupleTableSlot::tts_tableOid, UnlockReleaseBuffer(), VISIBILITYMAP_ALL_FROZEN, VISIBILITYMAP_ALL_VISIBLE, visibilitymap_clear(), visibilitymap_set(), VISIBILITYMAP_VALID_BITS, XLH_INSERT_ALL_FROZEN_SET, XLH_INSERT_ALL_VISIBLE_CLEARED, XLH_INSERT_CONTAINS_NEW_TUPLE, XLH_INSERT_LAST_IN_MULTI, XLOG_HEAP2_MULTI_INSERT, XLOG_HEAP_INIT_PAGE, XLOG_INCLUDE_ORIGIN, XLogBeginInsert(), XLogInsert(), XLogRegisterBufData(), XLogRegisterBuffer(), XLogRegisterData(), and XLogSetRecordFlags().

Referenced by CatalogTuplesMultiInsertWithInfo().

◆ heap_multi_insert_pages()

static int heap_multi_insert_pages ( HeapTuple heaptuples,
int  done,
int  ntuples,
Size  saveFreeSpace 
)
static

Definition at line 2327 of file heapam.c.

2328{
2329 size_t page_avail = BLCKSZ - SizeOfPageHeaderData - saveFreeSpace;
2330 int npages = 1;
2331
2332 for (int i = done; i < ntuples; i++)
2333 {
2334 size_t tup_sz = sizeof(ItemIdData) + MAXALIGN(heaptuples[i]->t_len);
2335
2336 if (page_avail < tup_sz)
2337 {
2338 npages++;
2339 page_avail = BLCKSZ - SizeOfPageHeaderData - saveFreeSpace;
2340 }
2341 page_avail -= tup_sz;
2342 }
2343
2344 return npages;
2345}
#define SizeOfPageHeaderData
Definition: bufpage.h:217
struct ItemIdData ItemIdData

References i, MAXALIGN, and SizeOfPageHeaderData.

Referenced by heap_multi_insert().

◆ heap_pre_freeze_checks()

void heap_pre_freeze_checks ( Buffer  buffer,
HeapTupleFreeze tuples,
int  ntuples 
)

Definition at line 7327 of file heapam.c.

7329{
7330 Page page = BufferGetPage(buffer);
7331
7332 for (int i = 0; i < ntuples; i++)
7333 {
7334 HeapTupleFreeze *frz = tuples + i;
7335 ItemId itemid = PageGetItemId(page, frz->offset);
7336 HeapTupleHeader htup;
7337
7338 htup = (HeapTupleHeader) PageGetItem(page, itemid);
7339
7340 /* Deliberately avoid relying on tuple hint bits here */
7342 {
7344
7346 if (unlikely(!TransactionIdDidCommit(xmin)))
7347 ereport(ERROR,
7349 errmsg_internal("uncommitted xmin %u needs to be frozen",
7350 xmin)));
7351 }
7352
7353 /*
7354 * TransactionIdDidAbort won't work reliably in the presence of XIDs
7355 * left behind by transactions that were in progress during a crash,
7356 * so we can only check that xmax didn't commit
7357 */
7359 {
7361
7364 ereport(ERROR,
7366 errmsg_internal("cannot freeze committed xmax %u",
7367 xmax)));
7368 }
7369 }
7370}
#define HEAP_FREEZE_CHECK_XMAX_ABORTED
Definition: heapam.h:138
#define HEAP_FREEZE_CHECK_XMIN_COMMITTED
Definition: heapam.h:137
static bool HeapTupleHeaderXminFrozen(const HeapTupleHeaderData *tup)
Definition: htup_details.h:350
static TransactionId HeapTupleHeaderGetRawXmin(const HeapTupleHeaderData *tup)
Definition: htup_details.h:318
uint8 checkflags
Definition: heapam.h:150
#define TransactionIdIsNormal(xid)
Definition: transam.h:42

References Assert(), BufferGetPage(), HeapTupleFreeze::checkflags, ereport, errcode(), ERRCODE_DATA_CORRUPTED, errmsg_internal(), ERROR, HEAP_FREEZE_CHECK_XMAX_ABORTED, HEAP_FREEZE_CHECK_XMIN_COMMITTED, HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetRawXmin(), HeapTupleHeaderXminFrozen(), i, HeapTupleFreeze::offset, PageGetItem(), PageGetItemId(), TransactionIdDidCommit(), TransactionIdIsNormal, and unlikely.

Referenced by heap_page_prune_and_freeze().

◆ heap_prepare_freeze_tuple()

bool heap_prepare_freeze_tuple ( HeapTupleHeader  tuple,
const struct VacuumCutoffs cutoffs,
HeapPageFreeze pagefrz,
HeapTupleFreeze frz,
bool *  totally_frozen 
)

Definition at line 7054 of file heapam.c.

7058{
7059 bool xmin_already_frozen = false,
7060 xmax_already_frozen = false;
7061 bool freeze_xmin = false,
7062 replace_xvac = false,
7063 replace_xmax = false,
7064 freeze_xmax = false;
7065 TransactionId xid;
7066
7067 frz->xmax = HeapTupleHeaderGetRawXmax(tuple);
7068 frz->t_infomask2 = tuple->t_infomask2;
7069 frz->t_infomask = tuple->t_infomask;
7070 frz->frzflags = 0;
7071 frz->checkflags = 0;
7072
7073 /*
7074 * Process xmin, while keeping track of whether it's already frozen, or
7075 * will become frozen iff our freeze plan is executed by caller (could be
7076 * neither).
7077 */
7078 xid = HeapTupleHeaderGetXmin(tuple);
7079 if (!TransactionIdIsNormal(xid))
7080 xmin_already_frozen = true;
7081 else
7082 {
7083 if (TransactionIdPrecedes(xid, cutoffs->relfrozenxid))
7084 ereport(ERROR,
7086 errmsg_internal("found xmin %u from before relfrozenxid %u",
7087 xid, cutoffs->relfrozenxid)));
7088
7089 /* Will set freeze_xmin flags in freeze plan below */
7090 freeze_xmin = TransactionIdPrecedes(xid, cutoffs->OldestXmin);
7091
7092 /* Verify that xmin committed if and when freeze plan is executed */
7093 if (freeze_xmin)
7095 }
7096
7097 /*
7098 * Old-style VACUUM FULL is gone, but we have to process xvac for as long
7099 * as we support having MOVED_OFF/MOVED_IN tuples in the database
7100 */
7101 xid = HeapTupleHeaderGetXvac(tuple);
7102 if (TransactionIdIsNormal(xid))
7103 {
7105 Assert(TransactionIdPrecedes(xid, cutoffs->OldestXmin));
7106
7107 /*
7108 * For Xvac, we always freeze proactively. This allows totally_frozen
7109 * tracking to ignore xvac.
7110 */
7111 replace_xvac = pagefrz->freeze_required = true;
7112
7113 /* Will set replace_xvac flags in freeze plan below */
7114 }
7115
7116 /* Now process xmax */
7117 xid = frz->xmax;
7118 if (tuple->t_infomask & HEAP_XMAX_IS_MULTI)
7119 {
7120 /* Raw xmax is a MultiXactId */
7121 TransactionId newxmax;
7122 uint16 flags;
7123
7124 /*
7125 * We will either remove xmax completely (in the "freeze_xmax" path),
7126 * process xmax by replacing it (in the "replace_xmax" path), or
7127 * perform no-op xmax processing. The only constraint is that the
7128 * FreezeLimit/MultiXactCutoff postcondition must never be violated.
7129 */
7130 newxmax = FreezeMultiXactId(xid, tuple->t_infomask, cutoffs,
7131 &flags, pagefrz);
7132
7133 if (flags & FRM_NOOP)
7134 {
7135 /*
7136 * xmax is a MultiXactId, and nothing about it changes for now.
7137 * This is the only case where 'freeze_required' won't have been
7138 * set for us by FreezeMultiXactId, as well as the only case where
7139 * neither freeze_xmax nor replace_xmax are set (given a multi).
7140 *
7141 * This is a no-op, but the call to FreezeMultiXactId might have
7142 * ratcheted back NewRelfrozenXid and/or NewRelminMxid trackers
7143 * for us (the "freeze page" variants, specifically). That'll
7144 * make it safe for our caller to freeze the page later on, while
7145 * leaving this particular xmax undisturbed.
7146 *
7147 * FreezeMultiXactId is _not_ responsible for the "no freeze"
7148 * NewRelfrozenXid/NewRelminMxid trackers, though -- that's our
7149 * job. A call to heap_tuple_should_freeze for this same tuple
7150 * will take place below if 'freeze_required' isn't set already.
7151 * (This repeats work from FreezeMultiXactId, but allows "no
7152 * freeze" tracker maintenance to happen in only one place.)
7153 */
7154 Assert(!MultiXactIdPrecedes(newxmax, cutoffs->MultiXactCutoff));
7155 Assert(MultiXactIdIsValid(newxmax) && xid == newxmax);
7156 }
7157 else if (flags & FRM_RETURN_IS_XID)
7158 {
7159 /*
7160 * xmax will become an updater Xid (original MultiXact's updater
7161 * member Xid will be carried forward as a simple Xid in Xmax).
7162 */
7163 Assert(!TransactionIdPrecedes(newxmax, cutoffs->OldestXmin));
7164
7165 /*
7166 * NB -- some of these transformations are only valid because we
7167 * know the return Xid is a tuple updater (i.e. not merely a
7168 * locker.) Also note that the only reason we don't explicitly
7169 * worry about HEAP_KEYS_UPDATED is because it lives in
7170 * t_infomask2 rather than t_infomask.
7171 */
7172 frz->t_infomask &= ~HEAP_XMAX_BITS;
7173 frz->xmax = newxmax;
7174 if (flags & FRM_MARK_COMMITTED)
7176 replace_xmax = true;
7177 }
7178 else if (flags & FRM_RETURN_IS_MULTI)
7179 {
7180 uint16 newbits;
7181 uint16 newbits2;
7182
7183 /*
7184 * xmax is an old MultiXactId that we have to replace with a new
7185 * MultiXactId, to carry forward two or more original member XIDs.
7186 */
7187 Assert(!MultiXactIdPrecedes(newxmax, cutoffs->OldestMxact));
7188
7189 /*
7190 * We can't use GetMultiXactIdHintBits directly on the new multi
7191 * here; that routine initializes the masks to all zeroes, which
7192 * would lose other bits we need. Doing it this way ensures all
7193 * unrelated bits remain untouched.
7194 */
7195 frz->t_infomask &= ~HEAP_XMAX_BITS;
7196 frz->t_infomask2 &= ~HEAP_KEYS_UPDATED;
7197 GetMultiXactIdHintBits(newxmax, &newbits, &newbits2);
7198 frz->t_infomask |= newbits;
7199 frz->t_infomask2 |= newbits2;
7200 frz->xmax = newxmax;
7201 replace_xmax = true;
7202 }
7203 else
7204 {
7205 /*
7206 * Freeze plan for tuple "freezes xmax" in the strictest sense:
7207 * it'll leave nothing in xmax (neither an Xid nor a MultiXactId).
7208 */
7209 Assert(flags & FRM_INVALIDATE_XMAX);
7210 Assert(!TransactionIdIsValid(newxmax));
7211
7212 /* Will set freeze_xmax flags in freeze plan below */
7213 freeze_xmax = true;
7214 }
7215
7216 /* MultiXactId processing forces freezing (barring FRM_NOOP case) */
7217 Assert(pagefrz->freeze_required || (!freeze_xmax && !replace_xmax));
7218 }
7219 else if (TransactionIdIsNormal(xid))
7220 {
7221 /* Raw xmax is normal XID */
7222 if (TransactionIdPrecedes(xid, cutoffs->relfrozenxid))
7223 ereport(ERROR,
7225 errmsg_internal("found xmax %u from before relfrozenxid %u",
7226 xid, cutoffs->relfrozenxid)));
7227
7228 /* Will set freeze_xmax flags in freeze plan below */
7229 freeze_xmax = TransactionIdPrecedes(xid, cutoffs->OldestXmin);
7230
7231 /*
7232 * Verify that xmax aborted if and when freeze plan is executed,
7233 * provided it's from an update. (A lock-only xmax can be removed
7234 * independent of this, since the lock is released at xact end.)
7235 */
7236 if (freeze_xmax && !HEAP_XMAX_IS_LOCKED_ONLY(tuple->t_infomask))
7238 }
7239 else if (!TransactionIdIsValid(xid))
7240 {
7241 /* Raw xmax is InvalidTransactionId XID */
7242 Assert((tuple->t_infomask & HEAP_XMAX_IS_MULTI) == 0);
7243 xmax_already_frozen = true;
7244 }
7245 else
7246 ereport(ERROR,
7248 errmsg_internal("found raw xmax %u (infomask 0x%04x) not invalid and not multi",
7249 xid, tuple->t_infomask)));
7250
7251 if (freeze_xmin)
7252 {
7253 Assert(!xmin_already_frozen);
7254
7256 }
7257 if (replace_xvac)
7258 {
7259 /*
7260 * If a MOVED_OFF tuple is not dead, the xvac transaction must have
7261 * failed; whereas a non-dead MOVED_IN tuple must mean the xvac
7262 * transaction succeeded.
7263 */
7264 Assert(pagefrz->freeze_required);
7265 if (tuple->t_infomask & HEAP_MOVED_OFF)
7266 frz->frzflags |= XLH_INVALID_XVAC;
7267 else
7268 frz->frzflags |= XLH_FREEZE_XVAC;
7269 }
7270 if (replace_xmax)
7271 {
7272 Assert(!xmax_already_frozen && !freeze_xmax);
7273 Assert(pagefrz->freeze_required);
7274
7275 /* Already set replace_xmax flags in freeze plan earlier */
7276 }
7277 if (freeze_xmax)
7278 {
7279 Assert(!xmax_already_frozen && !replace_xmax);
7280
7282
7283 /*
7284 * The tuple might be marked either XMAX_INVALID or XMAX_COMMITTED +
7285 * LOCKED. Normalize to INVALID just to be sure no one gets confused.
7286 * Also get rid of the HEAP_KEYS_UPDATED bit.
7287 */
7288 frz->t_infomask &= ~HEAP_XMAX_BITS;
7290 frz->t_infomask2 &= ~HEAP_HOT_UPDATED;
7291 frz->t_infomask2 &= ~HEAP_KEYS_UPDATED;
7292 }
7293
7294 /*
7295 * Determine if this tuple is already totally frozen, or will become
7296 * totally frozen (provided caller executes freeze plans for the page)
7297 */
7298 *totally_frozen = ((freeze_xmin || xmin_already_frozen) &&
7299 (freeze_xmax || xmax_already_frozen));
7300
7301 if (!pagefrz->freeze_required && !(xmin_already_frozen &&
7302 xmax_already_frozen))
7303 {
7304 /*
7305 * So far no previous tuple from the page made freezing mandatory.
7306 * Does this tuple force caller to freeze the entire page?
7307 */
7308 pagefrz->freeze_required =
7309 heap_tuple_should_freeze(tuple, cutoffs,
7310 &pagefrz->NoFreezePageRelfrozenXid,
7311 &pagefrz->NoFreezePageRelminMxid);
7312 }
7313
7314 /* Tell caller if this tuple has a usable freeze plan set in *frz */
7315 return freeze_xmin || replace_xvac || replace_xmax || freeze_xmax;
7316}
static TransactionId FreezeMultiXactId(MultiXactId multi, uint16 t_infomask, const struct VacuumCutoffs *cutoffs, uint16 *flags, HeapPageFreeze *pagefrz)
Definition: heapam.c:6704
bool heap_tuple_should_freeze(HeapTupleHeader tuple, const struct VacuumCutoffs *cutoffs, TransactionId *NoFreezePageRelfrozenXid, MultiXactId *NoFreezePageRelminMxid)
Definition: heapam.c:7865
#define XLH_INVALID_XVAC
Definition: heapam_xlog.h:339
#define XLH_FREEZE_XVAC
Definition: heapam_xlog.h:338
#define HEAP_MOVED_OFF
Definition: htup_details.h:211
#define HEAP_XMIN_FROZEN
Definition: htup_details.h:206
static TransactionId HeapTupleHeaderGetXvac(const HeapTupleHeaderData *tup)
Definition: htup_details.h:442
MultiXactId NoFreezePageRelminMxid
Definition: heapam.h:220
TransactionId NoFreezePageRelfrozenXid
Definition: heapam.h:219
uint8 frzflags
Definition: heapam.h:147
uint16 t_infomask2
Definition: heapam.h:145
TransactionId xmax
Definition: heapam.h:144
uint16 t_infomask
Definition: heapam.h:146
bool TransactionIdPrecedesOrEquals(TransactionId id1, TransactionId id2)
Definition: transam.c:299

References Assert(), HeapTupleFreeze::checkflags, ereport, errcode(), ERRCODE_DATA_CORRUPTED, errmsg_internal(), ERROR, HeapPageFreeze::freeze_required, FreezeMultiXactId(), FRM_INVALIDATE_XMAX, FRM_MARK_COMMITTED, FRM_NOOP, FRM_RETURN_IS_MULTI, FRM_RETURN_IS_XID, HeapTupleFreeze::frzflags, GetMultiXactIdHintBits(), HEAP_FREEZE_CHECK_XMAX_ABORTED, HEAP_FREEZE_CHECK_XMIN_COMMITTED, HEAP_MOVED_OFF, heap_tuple_should_freeze(), HEAP_XMAX_COMMITTED, HEAP_XMAX_INVALID, HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HEAP_XMIN_FROZEN, HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetXmin(), HeapTupleHeaderGetXvac(), InvalidTransactionId, VacuumCutoffs::MultiXactCutoff, MultiXactIdIsValid, MultiXactIdPrecedes(), HeapPageFreeze::NoFreezePageRelfrozenXid, HeapPageFreeze::NoFreezePageRelminMxid, VacuumCutoffs::OldestMxact, VacuumCutoffs::OldestXmin, VacuumCutoffs::relfrozenxid, HeapTupleFreeze::t_infomask, HeapTupleHeaderData::t_infomask, HeapTupleFreeze::t_infomask2, HeapTupleHeaderData::t_infomask2, TransactionIdIsNormal, TransactionIdIsValid, TransactionIdPrecedes(), TransactionIdPrecedesOrEquals(), XLH_FREEZE_XVAC, XLH_INVALID_XVAC, and HeapTupleFreeze::xmax.

Referenced by heap_freeze_tuple(), and heap_prune_record_unchanged_lp_normal().

◆ heap_prepare_insert()

static HeapTuple heap_prepare_insert ( Relation  relation,
HeapTuple  tup,
TransactionId  xid,
CommandId  cid,
int  options 
)
static

Definition at line 2279 of file heapam.c.

2281{
2282 /*
2283 * To allow parallel inserts, we need to ensure that they are safe to be
2284 * performed in workers. We have the infrastructure to allow parallel
2285 * inserts in general except for the cases where inserts generate a new
2286 * CommandId (eg. inserts into a table having a foreign key column).
2287 */
2288 if (IsParallelWorker())
2289 ereport(ERROR,
2290 (errcode(ERRCODE_INVALID_TRANSACTION_STATE),
2291 errmsg("cannot insert tuples in a parallel worker")));
2292
2293 tup->t_data->t_infomask &= ~(HEAP_XACT_MASK);
2296 HeapTupleHeaderSetXmin(tup->t_data, xid);
2299
2300 HeapTupleHeaderSetCmin(tup->t_data, cid);
2301 HeapTupleHeaderSetXmax(tup->t_data, 0); /* for cleanliness */
2302 tup->t_tableOid = RelationGetRelid(relation);
2303
2304 /*
2305 * If the new tuple is too big for storage or contains already toasted
2306 * out-of-line attributes from some other relation, invoke the toaster.
2307 */
2308 if (relation->rd_rel->relkind != RELKIND_RELATION &&
2309 relation->rd_rel->relkind != RELKIND_MATVIEW)
2310 {
2311 /* toast table entries should never be recursively toasted */
2313 return tup;
2314 }
2315 else if (HeapTupleHasExternal(tup) || tup->t_len > TOAST_TUPLE_THRESHOLD)
2316 return heap_toast_insert_or_update(relation, tup, NULL, options);
2317 else
2318 return tup;
2319}
HeapTuple heap_toast_insert_or_update(Relation rel, HeapTuple newtup, HeapTuple oldtup, int options)
Definition: heaptoast.c:96
#define TOAST_TUPLE_THRESHOLD
Definition: heaptoast.h:48
static void HeapTupleHeaderSetXminFrozen(HeapTupleHeaderData *tup)
Definition: htup_details.h:370
#define HEAP2_XACT_MASK
Definition: htup_details.h:293
static void HeapTupleHeaderSetCmin(HeapTupleHeaderData *tup, CommandId cid)
Definition: htup_details.h:422
#define HEAP_XACT_MASK
Definition: htup_details.h:215
#define IsParallelWorker()
Definition: parallel.h:60

References Assert(), ereport, errcode(), errmsg(), ERROR, HEAP2_XACT_MASK, HEAP_INSERT_FROZEN, heap_toast_insert_or_update(), HEAP_XACT_MASK, HEAP_XMAX_INVALID, HeapTupleHasExternal(), HeapTupleHeaderSetCmin(), HeapTupleHeaderSetXmax(), HeapTupleHeaderSetXmin(), HeapTupleHeaderSetXminFrozen(), IsParallelWorker, RelationData::rd_rel, RelationGetRelid, HeapTupleData::t_data, HeapTupleHeaderData::t_infomask, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_tableOid, and TOAST_TUPLE_THRESHOLD.

Referenced by heap_insert(), and heap_multi_insert().

◆ heap_prepare_pagescan()

void heap_prepare_pagescan ( TableScanDesc  sscan)

Definition at line 552 of file heapam.c.

553{
554 HeapScanDesc scan = (HeapScanDesc) sscan;
555 Buffer buffer = scan->rs_cbuf;
556 BlockNumber block = scan->rs_cblock;
557 Snapshot snapshot;
558 Page page;
559 int lines;
560 bool all_visible;
561 bool check_serializable;
562
563 Assert(BufferGetBlockNumber(buffer) == block);
564
565 /* ensure we're not accidentally being used when not in pagemode */
567 snapshot = scan->rs_base.rs_snapshot;
568
569 /*
570 * Prune and repair fragmentation for the whole page, if possible.
571 */
572 heap_page_prune_opt(scan->rs_base.rs_rd, buffer);
573
574 /*
575 * We must hold share lock on the buffer content while examining tuple
576 * visibility. Afterwards, however, the tuples we have found to be
577 * visible are guaranteed good as long as we hold the buffer pin.
578 */
580
581 page = BufferGetPage(buffer);
582 lines = PageGetMaxOffsetNumber(page);
583
584 /*
585 * If the all-visible flag indicates that all tuples on the page are
586 * visible to everyone, we can skip the per-tuple visibility tests.
587 *
588 * Note: In hot standby, a tuple that's already visible to all
589 * transactions on the primary might still be invisible to a read-only
590 * transaction in the standby. We partly handle this problem by tracking
591 * the minimum xmin of visible tuples as the cut-off XID while marking a
592 * page all-visible on the primary and WAL log that along with the
593 * visibility map SET operation. In hot standby, we wait for (or abort)
594 * all transactions that can potentially may not see one or more tuples on
595 * the page. That's how index-only scans work fine in hot standby. A
596 * crucial difference between index-only scans and heap scans is that the
597 * index-only scan completely relies on the visibility map where as heap
598 * scan looks at the page-level PD_ALL_VISIBLE flag. We are not sure if
599 * the page-level flag can be trusted in the same way, because it might
600 * get propagated somehow without being explicitly WAL-logged, e.g. via a
601 * full page write. Until we can prove that beyond doubt, let's check each
602 * tuple for visibility the hard way.
603 */
604 all_visible = PageIsAllVisible(page) && !snapshot->takenDuringRecovery;
605 check_serializable =
607
608 /*
609 * We call page_collect_tuples() with constant arguments, to get the
610 * compiler to constant fold the constant arguments. Separate calls with
611 * constant arguments, rather than variables, are needed on several
612 * compilers to actually perform constant folding.
613 */
614 if (likely(all_visible))
615 {
616 if (likely(!check_serializable))
617 scan->rs_ntuples = page_collect_tuples(scan, snapshot, page, buffer,
618 block, lines, true, false);
619 else
620 scan->rs_ntuples = page_collect_tuples(scan, snapshot, page, buffer,
621 block, lines, true, true);
622 }
623 else
624 {
625 if (likely(!check_serializable))
626 scan->rs_ntuples = page_collect_tuples(scan, snapshot, page, buffer,
627 block, lines, false, false);
628 else
629 scan->rs_ntuples = page_collect_tuples(scan, snapshot, page, buffer,
630 block, lines, false, true);
631 }
632
634}
#define likely(x)
Definition: c.h:401
static pg_attribute_always_inline int page_collect_tuples(HeapScanDesc scan, Snapshot snapshot, Page page, Buffer buffer, BlockNumber block, int lines, bool all_visible, bool check_serializable)
Definition: heapam.c:502
bool CheckForSerializableConflictOutNeeded(Relation relation, Snapshot snapshot)
Definition: predicate.c:3991
void heap_page_prune_opt(Relation relation, Buffer buffer)
Definition: pruneheap.c:193
uint32 rs_ntuples
Definition: heapam.h:99
bool takenDuringRecovery
Definition: snapshot.h:180

References Assert(), BUFFER_LOCK_SHARE, BUFFER_LOCK_UNLOCK, BufferGetBlockNumber(), BufferGetPage(), CheckForSerializableConflictOutNeeded(), heap_page_prune_opt(), likely, LockBuffer(), page_collect_tuples(), PageGetMaxOffsetNumber(), PageIsAllVisible(), HeapScanDescData::rs_base, HeapScanDescData::rs_cblock, HeapScanDescData::rs_cbuf, TableScanDescData::rs_flags, HeapScanDescData::rs_ntuples, TableScanDescData::rs_rd, TableScanDescData::rs_snapshot, SO_ALLOW_PAGEMODE, and SnapshotData::takenDuringRecovery.

Referenced by heapam_scan_sample_next_block(), and heapgettup_pagemode().

◆ heap_rescan()

void heap_rescan ( TableScanDesc  sscan,
ScanKey  key,
bool  set_params,
bool  allow_strat,
bool  allow_sync,
bool  allow_pagemode 
)

Definition at line 1254 of file heapam.c.

1256{
1257 HeapScanDesc scan = (HeapScanDesc) sscan;
1258
1259 if (set_params)
1260 {
1261 if (allow_strat)
1263 else
1264 scan->rs_base.rs_flags &= ~SO_ALLOW_STRAT;
1265
1266 if (allow_sync)
1268 else
1269 scan->rs_base.rs_flags &= ~SO_ALLOW_SYNC;
1270
1271 if (allow_pagemode && scan->rs_base.rs_snapshot &&
1274 else
1276 }
1277
1278 /*
1279 * unpin scan buffers
1280 */
1281 if (BufferIsValid(scan->rs_cbuf))
1282 {
1283 ReleaseBuffer(scan->rs_cbuf);
1284 scan->rs_cbuf = InvalidBuffer;
1285 }
1286
1287 /*
1288 * SO_TYPE_BITMAPSCAN would be cleaned up here, but it does not hold any
1289 * additional data vs a normal HeapScan
1290 */
1291
1292 /*
1293 * The read stream is reset on rescan. This must be done before
1294 * initscan(), as some state referred to by read_stream_reset() is reset
1295 * in initscan().
1296 */
1297 if (scan->rs_read_stream)
1299
1300 /*
1301 * reinitialize scan descriptor
1302 */
1303 initscan(scan, key, true);
1304}
@ SO_ALLOW_STRAT
Definition: tableam.h:58
@ SO_ALLOW_SYNC
Definition: tableam.h:60

References BufferIsValid(), initscan(), InvalidBuffer, IsMVCCSnapshot, sort-test::key, read_stream_reset(), ReleaseBuffer(), HeapScanDescData::rs_base, HeapScanDescData::rs_cbuf, TableScanDescData::rs_flags, HeapScanDescData::rs_read_stream, TableScanDescData::rs_snapshot, SO_ALLOW_PAGEMODE, SO_ALLOW_STRAT, and SO_ALLOW_SYNC.

◆ heap_scan_stream_read_next_parallel()

static BlockNumber heap_scan_stream_read_next_parallel ( ReadStream stream,
void *  callback_private_data,
void *  per_buffer_data 
)
static

Definition at line 247 of file heapam.c.

250{
251 HeapScanDesc scan = (HeapScanDesc) callback_private_data;
252
255
256 if (unlikely(!scan->rs_inited))
257 {
258 /* parallel scan */
262
263 /* may return InvalidBlockNumber if there are no more blocks */
267 scan->rs_inited = true;
268 }
269 else
270 {
273 scan->rs_base.rs_parallel);
274 }
275
276 return scan->rs_prefetch_block;
277}
bool rs_inited
Definition: heapam.h:67
void table_block_parallelscan_startblock_init(Relation rel, ParallelBlockTableScanWorker pbscanwork, ParallelBlockTableScanDesc pbscan)
Definition: tableam.c:422
BlockNumber table_block_parallelscan_nextpage(Relation rel, ParallelBlockTableScanWorker pbscanwork, ParallelBlockTableScanDesc pbscan)
Definition: tableam.c:492

References Assert(), HeapScanDescData::rs_base, HeapScanDescData::rs_dir, HeapScanDescData::rs_inited, TableScanDescData::rs_parallel, HeapScanDescData::rs_parallelworkerdata, HeapScanDescData::rs_prefetch_block, TableScanDescData::rs_rd, ScanDirectionIsForward, table_block_parallelscan_nextpage(), table_block_parallelscan_startblock_init(), and unlikely.

Referenced by heap_beginscan().

◆ heap_scan_stream_read_next_serial()

static BlockNumber heap_scan_stream_read_next_serial ( ReadStream stream,
void *  callback_private_data,
void *  per_buffer_data 
)
static

Definition at line 285 of file heapam.c.

288{
289 HeapScanDesc scan = (HeapScanDesc) callback_private_data;
290
291 if (unlikely(!scan->rs_inited))
292 {
294 scan->rs_inited = true;
295 }
296 else
298 scan->rs_prefetch_block,
299 scan->rs_dir);
300
301 return scan->rs_prefetch_block;
302}
static pg_noinline BlockNumber heapgettup_initial_block(HeapScanDesc scan, ScanDirection dir)
Definition: heapam.c:688
static BlockNumber heapgettup_advance_block(HeapScanDesc scan, BlockNumber block, ScanDirection dir)
Definition: heapam.c:812

References heapgettup_advance_block(), heapgettup_initial_block(), HeapScanDescData::rs_dir, HeapScanDescData::rs_inited, HeapScanDescData::rs_prefetch_block, and unlikely.

Referenced by heap_beginscan().

◆ heap_set_tidrange()

void heap_set_tidrange ( TableScanDesc  sscan,
ItemPointer  mintid,
ItemPointer  maxtid 
)

Definition at line 1425 of file heapam.c.

1427{
1428 HeapScanDesc scan = (HeapScanDesc) sscan;
1429 BlockNumber startBlk;
1430 BlockNumber numBlks;
1431 ItemPointerData highestItem;
1432 ItemPointerData lowestItem;
1433
1434 /*
1435 * For relations without any pages, we can simply leave the TID range
1436 * unset. There will be no tuples to scan, therefore no tuples outside
1437 * the given TID range.
1438 */
1439 if (scan->rs_nblocks == 0)
1440 return;
1441
1442 /*
1443 * Set up some ItemPointers which point to the first and last possible
1444 * tuples in the heap.
1445 */
1446 ItemPointerSet(&highestItem, scan->rs_nblocks - 1, MaxOffsetNumber);
1447 ItemPointerSet(&lowestItem, 0, FirstOffsetNumber);
1448
1449 /*
1450 * If the given maximum TID is below the highest possible TID in the
1451 * relation, then restrict the range to that, otherwise we scan to the end
1452 * of the relation.
1453 */
1454 if (ItemPointerCompare(maxtid, &highestItem) < 0)
1455 ItemPointerCopy(maxtid, &highestItem);
1456
1457 /*
1458 * If the given minimum TID is above the lowest possible TID in the
1459 * relation, then restrict the range to only scan for TIDs above that.
1460 */
1461 if (ItemPointerCompare(mintid, &lowestItem) > 0)
1462 ItemPointerCopy(mintid, &lowestItem);
1463
1464 /*
1465 * Check for an empty range and protect from would be negative results
1466 * from the numBlks calculation below.
1467 */
1468 if (ItemPointerCompare(&highestItem, &lowestItem) < 0)
1469 {
1470 /* Set an empty range of blocks to scan */
1471 heap_setscanlimits(sscan, 0, 0);
1472 return;
1473 }
1474
1475 /*
1476 * Calculate the first block and the number of blocks we must scan. We
1477 * could be more aggressive here and perform some more validation to try
1478 * and further narrow the scope of blocks to scan by checking if the
1479 * lowestItem has an offset above MaxOffsetNumber. In this case, we could
1480 * advance startBlk by one. Likewise, if highestItem has an offset of 0
1481 * we could scan one fewer blocks. However, such an optimization does not
1482 * seem worth troubling over, currently.
1483 */
1484 startBlk = ItemPointerGetBlockNumberNoCheck(&lowestItem);
1485
1486 numBlks = ItemPointerGetBlockNumberNoCheck(&highestItem) -
1487 ItemPointerGetBlockNumberNoCheck(&lowestItem) + 1;
1488
1489 /* Set the start block and number of blocks to scan */
1490 heap_setscanlimits(sscan, startBlk, numBlks);
1491
1492 /* Finally, set the TID range in sscan */
1493 ItemPointerCopy(&lowestItem, &sscan->st.tidrange.rs_mintid);
1494 ItemPointerCopy(&highestItem, &sscan->st.tidrange.rs_maxtid);
1495}
void heap_setscanlimits(TableScanDesc sscan, BlockNumber startBlk, BlockNumber numBlks)
Definition: heapam.c:480
static BlockNumber ItemPointerGetBlockNumberNoCheck(const ItemPointerData *pointer)
Definition: itemptr.h:93
#define MaxOffsetNumber
Definition: off.h:28

References FirstOffsetNumber, heap_setscanlimits(), ItemPointerCompare(), ItemPointerCopy(), ItemPointerGetBlockNumberNoCheck(), ItemPointerSet(), MaxOffsetNumber, TableScanDescData::rs_maxtid, TableScanDescData::rs_mintid, HeapScanDescData::rs_nblocks, TableScanDescData::st, and TableScanDescData::tidrange.

◆ heap_setscanlimits()

void heap_setscanlimits ( TableScanDesc  sscan,
BlockNumber  startBlk,
BlockNumber  numBlks 
)

Definition at line 480 of file heapam.c.

481{
482 HeapScanDesc scan = (HeapScanDesc) sscan;
483
484 Assert(!scan->rs_inited); /* else too late to change */
485 /* else rs_startblock is significant */
487
488 /* Check startBlk is valid (but allow case of zero blocks...) */
489 Assert(startBlk == 0 || startBlk < scan->rs_nblocks);
490
491 scan->rs_startblock = startBlk;
492 scan->rs_numblocks = numBlks;
493}
BlockNumber rs_startblock
Definition: heapam.h:62
BlockNumber rs_numblocks
Definition: heapam.h:63

References Assert(), HeapScanDescData::rs_base, TableScanDescData::rs_flags, HeapScanDescData::rs_inited, HeapScanDescData::rs_numblocks, HeapScanDescData::rs_startblock, and SO_ALLOW_SYNC.

Referenced by heap_set_tidrange(), and heapam_index_build_range_scan().

◆ heap_tuple_needs_eventual_freeze()

bool heap_tuple_needs_eventual_freeze ( HeapTupleHeader  tuple)

Definition at line 7810 of file heapam.c.

7811{
7812 TransactionId xid;
7813
7814 /*
7815 * If xmin is a normal transaction ID, this tuple is definitely not
7816 * frozen.
7817 */
7818 xid = HeapTupleHeaderGetXmin(tuple);
7819 if (TransactionIdIsNormal(xid))
7820 return true;
7821
7822 /*
7823 * If xmax is a valid xact or multixact, this tuple is also not frozen.
7824 */
7825 if (tuple->t_infomask & HEAP_XMAX_IS_MULTI)
7826 {
7827 MultiXactId multi;
7828
7829 multi = HeapTupleHeaderGetRawXmax(tuple);
7830 if (MultiXactIdIsValid(multi))
7831 return true;
7832 }
7833 else
7834 {
7835 xid = HeapTupleHeaderGetRawXmax(tuple);
7836 if (TransactionIdIsNormal(xid))
7837 return true;
7838 }
7839
7840 if (tuple->t_infomask & HEAP_MOVED)
7841 {
7842 xid = HeapTupleHeaderGetXvac(tuple);
7843 if (TransactionIdIsNormal(xid))
7844 return true;
7845 }
7846
7847 return false;
7848}

References HEAP_MOVED, HEAP_XMAX_IS_MULTI, HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetXmin(), HeapTupleHeaderGetXvac(), MultiXactIdIsValid, HeapTupleHeaderData::t_infomask, and TransactionIdIsNormal.

Referenced by collect_corrupt_items(), and heap_page_is_all_visible().

◆ heap_tuple_should_freeze()

bool heap_tuple_should_freeze ( HeapTupleHeader  tuple,
const struct VacuumCutoffs cutoffs,
TransactionId NoFreezePageRelfrozenXid,
MultiXactId NoFreezePageRelminMxid 
)

Definition at line 7865 of file heapam.c.

7869{
7870 TransactionId xid;
7871 MultiXactId multi;
7872 bool freeze = false;
7873
7874 /* First deal with xmin */
7875 xid = HeapTupleHeaderGetXmin(tuple);
7876 if (TransactionIdIsNormal(xid))
7877 {
7879 if (TransactionIdPrecedes(xid, *NoFreezePageRelfrozenXid))
7880 *NoFreezePageRelfrozenXid = xid;
7881 if (TransactionIdPrecedes(xid, cutoffs->FreezeLimit))
7882 freeze = true;
7883 }
7884
7885 /* Now deal with xmax */
7887 multi = InvalidMultiXactId;
7888 if (tuple->t_infomask & HEAP_XMAX_IS_MULTI)
7889 multi = HeapTupleHeaderGetRawXmax(tuple);
7890 else
7891 xid = HeapTupleHeaderGetRawXmax(tuple);
7892
7893 if (TransactionIdIsNormal(xid))
7894 {
7896 /* xmax is a non-permanent XID */
7897 if (TransactionIdPrecedes(xid, *NoFreezePageRelfrozenXid))
7898 *NoFreezePageRelfrozenXid = xid;
7899 if (TransactionIdPrecedes(xid, cutoffs->FreezeLimit))
7900 freeze = true;
7901 }
7902 else if (!MultiXactIdIsValid(multi))
7903 {
7904 /* xmax is a permanent XID or invalid MultiXactId/XID */
7905 }
7906 else if (HEAP_LOCKED_UPGRADED(tuple->t_infomask))
7907 {
7908 /* xmax is a pg_upgrade'd MultiXact, which can't have updater XID */
7909 if (MultiXactIdPrecedes(multi, *NoFreezePageRelminMxid))
7910 *NoFreezePageRelminMxid = multi;
7911 /* heap_prepare_freeze_tuple always freezes pg_upgrade'd xmax */
7912 freeze = true;
7913 }
7914 else
7915 {
7916 /* xmax is a MultiXactId that may have an updater XID */
7917 MultiXactMember *members;
7918 int nmembers;
7919
7921 if (MultiXactIdPrecedes(multi, *NoFreezePageRelminMxid))
7922 *NoFreezePageRelminMxid = multi;
7923 if (MultiXactIdPrecedes(multi, cutoffs->MultiXactCutoff))
7924 freeze = true;
7925
7926 /* need to check whether any member of the mxact is old */
7927 nmembers = GetMultiXactIdMembers(multi, &members, false,
7929
7930 for (int i = 0; i < nmembers; i++)
7931 {
7932 xid = members[i].xid;
7934 if (TransactionIdPrecedes(xid, *NoFreezePageRelfrozenXid))
7935 *NoFreezePageRelfrozenXid = xid;
7936 if (TransactionIdPrecedes(xid, cutoffs->FreezeLimit))
7937 freeze = true;
7938 }
7939 if (nmembers > 0)
7940 pfree(members);
7941 }
7942
7943 if (tuple->t_infomask & HEAP_MOVED)
7944 {
7945 xid = HeapTupleHeaderGetXvac(tuple);
7946 if (TransactionIdIsNormal(xid))
7947 {
7949 if (TransactionIdPrecedes(xid, *NoFreezePageRelfrozenXid))
7950 *NoFreezePageRelfrozenXid = xid;
7951 /* heap_prepare_freeze_tuple forces xvac freezing */
7952 freeze = true;
7953 }
7954 }
7955
7956 return freeze;
7957}
bool MultiXactIdPrecedesOrEquals(MultiXactId multi1, MultiXactId multi2)
Definition: multixact.c:3279
#define InvalidMultiXactId
Definition: multixact.h:25

References Assert(), VacuumCutoffs::FreezeLimit, GetMultiXactIdMembers(), HEAP_LOCKED_UPGRADED(), HEAP_MOVED, HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetXmin(), HeapTupleHeaderGetXvac(), i, InvalidMultiXactId, InvalidTransactionId, VacuumCutoffs::MultiXactCutoff, MultiXactIdIsValid, MultiXactIdPrecedes(), MultiXactIdPrecedesOrEquals(), pfree(), VacuumCutoffs::relfrozenxid, VacuumCutoffs::relminmxid, HeapTupleHeaderData::t_infomask, TransactionIdIsNormal, TransactionIdPrecedes(), TransactionIdPrecedesOrEquals(), and MultiXactMember::xid.

Referenced by heap_prepare_freeze_tuple(), and lazy_scan_noprune().

◆ heap_update()

TM_Result heap_update ( Relation  relation,
ItemPointer  otid,
HeapTuple  newtup,
CommandId  cid,
Snapshot  crosscheck,
bool  wait,
TM_FailureData tmfd,
LockTupleMode lockmode,
TU_UpdateIndexes update_indexes 
)

Definition at line 3247 of file heapam.c.

3251{
3252 TM_Result result;
3254 Bitmapset *hot_attrs;
3255 Bitmapset *sum_attrs;
3256 Bitmapset *key_attrs;
3257 Bitmapset *id_attrs;
3258 Bitmapset *interesting_attrs;
3259 Bitmapset *modified_attrs;
3260 ItemId lp;
3261 HeapTupleData oldtup;
3262 HeapTuple heaptup;
3263 HeapTuple old_key_tuple = NULL;
3264 bool old_key_copied = false;
3265 Page page;
3266 BlockNumber block;
3267 MultiXactStatus mxact_status;
3268 Buffer buffer,
3269 newbuf,
3270 vmbuffer = InvalidBuffer,
3271 vmbuffer_new = InvalidBuffer;
3272 bool need_toast;
3273 Size newtupsize,
3274 pagefree;
3275 bool have_tuple_lock = false;
3276 bool iscombo;
3277 bool use_hot_update = false;
3278 bool summarized_update = false;
3279 bool key_intact;
3280 bool all_visible_cleared = false;
3281 bool all_visible_cleared_new = false;
3282 bool checked_lockers;
3283 bool locker_remains;
3284 bool id_has_external = false;
3285 TransactionId xmax_new_tuple,
3286 xmax_old_tuple;
3287 uint16 infomask_old_tuple,
3288 infomask2_old_tuple,
3289 infomask_new_tuple,
3290 infomask2_new_tuple;
3291
3293
3294 /* Cheap, simplistic check that the tuple matches the rel's rowtype. */
3297
3298 AssertHasSnapshotForToast(relation);
3299
3300 /*
3301 * Forbid this during a parallel operation, lest it allocate a combo CID.
3302 * Other workers might need that combo CID for visibility checks, and we
3303 * have no provision for broadcasting it to them.
3304 */
3305 if (IsInParallelMode())
3306 ereport(ERROR,
3307 (errcode(ERRCODE_INVALID_TRANSACTION_STATE),
3308 errmsg("cannot update tuples during a parallel operation")));
3309
3310#ifdef USE_ASSERT_CHECKING
3311 check_lock_if_inplace_updateable_rel(relation, otid, newtup);
3312#endif
3313
3314 /*
3315 * Fetch the list of attributes to be checked for various operations.
3316 *
3317 * For HOT considerations, this is wasted effort if we fail to update or
3318 * have to put the new tuple on a different page. But we must compute the
3319 * list before obtaining buffer lock --- in the worst case, if we are
3320 * doing an update on one of the relevant system catalogs, we could
3321 * deadlock if we try to fetch the list later. In any case, the relcache
3322 * caches the data so this is usually pretty cheap.
3323 *
3324 * We also need columns used by the replica identity and columns that are
3325 * considered the "key" of rows in the table.
3326 *
3327 * Note that we get copies of each bitmap, so we need not worry about
3328 * relcache flush happening midway through.
3329 */
3330 hot_attrs = RelationGetIndexAttrBitmap(relation,
3332 sum_attrs = RelationGetIndexAttrBitmap(relation,
3335 id_attrs = RelationGetIndexAttrBitmap(relation,
3337 interesting_attrs = NULL;
3338 interesting_attrs = bms_add_members(interesting_attrs, hot_attrs);
3339 interesting_attrs = bms_add_members(interesting_attrs, sum_attrs);
3340 interesting_attrs = bms_add_members(interesting_attrs, key_attrs);
3341 interesting_attrs = bms_add_members(interesting_attrs, id_attrs);
3342
3343 block = ItemPointerGetBlockNumber(otid);
3344 INJECTION_POINT("heap_update-before-pin", NULL);
3345 buffer = ReadBuffer(relation, block);
3346 page = BufferGetPage(buffer);
3347
3348 /*
3349 * Before locking the buffer, pin the visibility map page if it appears to
3350 * be necessary. Since we haven't got the lock yet, someone else might be
3351 * in the middle of changing this, so we'll need to recheck after we have
3352 * the lock.
3353 */
3354 if (PageIsAllVisible(page))
3355 visibilitymap_pin(relation, block, &vmbuffer);
3356
3358
3359 lp = PageGetItemId(page, ItemPointerGetOffsetNumber(otid));
3360
3361 /*
3362 * Usually, a buffer pin and/or snapshot blocks pruning of otid, ensuring
3363 * we see LP_NORMAL here. When the otid origin is a syscache, we may have
3364 * neither a pin nor a snapshot. Hence, we may see other LP_ states, each
3365 * of which indicates concurrent pruning.
3366 *
3367 * Failing with TM_Updated would be most accurate. However, unlike other
3368 * TM_Updated scenarios, we don't know the successor ctid in LP_UNUSED and
3369 * LP_DEAD cases. While the distinction between TM_Updated and TM_Deleted
3370 * does matter to SQL statements UPDATE and MERGE, those SQL statements
3371 * hold a snapshot that ensures LP_NORMAL. Hence, the choice between
3372 * TM_Updated and TM_Deleted affects only the wording of error messages.
3373 * Settle on TM_Deleted, for two reasons. First, it avoids complicating
3374 * the specification of when tmfd->ctid is valid. Second, it creates
3375 * error log evidence that we took this branch.
3376 *
3377 * Since it's possible to see LP_UNUSED at otid, it's also possible to see
3378 * LP_NORMAL for a tuple that replaced LP_UNUSED. If it's a tuple for an
3379 * unrelated row, we'll fail with "duplicate key value violates unique".
3380 * XXX if otid is the live, newer version of the newtup row, we'll discard
3381 * changes originating in versions of this catalog row after the version
3382 * the caller got from syscache. See syscache-update-pruned.spec.
3383 */
3384 if (!ItemIdIsNormal(lp))
3385 {
3387
3388 UnlockReleaseBuffer(buffer);
3389 Assert(!have_tuple_lock);
3390 if (vmbuffer != InvalidBuffer)
3391 ReleaseBuffer(vmbuffer);
3392 tmfd->ctid = *otid;
3393 tmfd->xmax = InvalidTransactionId;
3394 tmfd->cmax = InvalidCommandId;
3395 *update_indexes = TU_None;
3396
3397 bms_free(hot_attrs);
3398 bms_free(sum_attrs);
3399 bms_free(key_attrs);
3400 bms_free(id_attrs);
3401 /* modified_attrs not yet initialized */
3402 bms_free(interesting_attrs);
3403 return TM_Deleted;
3404 }
3405
3406 /*
3407 * Fill in enough data in oldtup for HeapDetermineColumnsInfo to work
3408 * properly.
3409 */
3410 oldtup.t_tableOid = RelationGetRelid(relation);
3411 oldtup.t_data = (HeapTupleHeader) PageGetItem(page, lp);
3412 oldtup.t_len = ItemIdGetLength(lp);
3413 oldtup.t_self = *otid;
3414
3415 /* the new tuple is ready, except for this: */
3416 newtup->t_tableOid = RelationGetRelid(relation);
3417
3418 /*
3419 * Determine columns modified by the update. Additionally, identify
3420 * whether any of the unmodified replica identity key attributes in the
3421 * old tuple is externally stored or not. This is required because for
3422 * such attributes the flattened value won't be WAL logged as part of the
3423 * new tuple so we must include it as part of the old_key_tuple. See
3424 * ExtractReplicaIdentity.
3425 */
3426 modified_attrs = HeapDetermineColumnsInfo(relation, interesting_attrs,
3427 id_attrs, &oldtup,
3428 newtup, &id_has_external);
3429
3430 /*
3431 * If we're not updating any "key" column, we can grab a weaker lock type.
3432 * This allows for more concurrency when we are running simultaneously
3433 * with foreign key checks.
3434 *
3435 * Note that if a column gets detoasted while executing the update, but
3436 * the value ends up being the same, this test will fail and we will use
3437 * the stronger lock. This is acceptable; the important case to optimize
3438 * is updates that don't manipulate key columns, not those that
3439 * serendipitously arrive at the same key values.
3440 */
3441 if (!bms_overlap(modified_attrs, key_attrs))
3442 {
3443 *lockmode = LockTupleNoKeyExclusive;
3444 mxact_status = MultiXactStatusNoKeyUpdate;
3445 key_intact = true;
3446
3447 /*
3448 * If this is the first possibly-multixact-able operation in the
3449 * current transaction, set my per-backend OldestMemberMXactId
3450 * setting. We can be certain that the transaction will never become a
3451 * member of any older MultiXactIds than that. (We have to do this
3452 * even if we end up just using our own TransactionId below, since
3453 * some other backend could incorporate our XID into a MultiXact
3454 * immediately afterwards.)
3455 */
3457 }
3458 else
3459 {
3460 *lockmode = LockTupleExclusive;
3461 mxact_status = MultiXactStatusUpdate;
3462 key_intact = false;
3463 }
3464
3465 /*
3466 * Note: beyond this point, use oldtup not otid to refer to old tuple.
3467 * otid may very well point at newtup->t_self, which we will overwrite
3468 * with the new tuple's location, so there's great risk of confusion if we
3469 * use otid anymore.
3470 */
3471
3472l2:
3473 checked_lockers = false;
3474 locker_remains = false;
3475 result = HeapTupleSatisfiesUpdate(&oldtup, cid, buffer);
3476
3477 /* see below about the "no wait" case */
3478 Assert(result != TM_BeingModified || wait);
3479
3480 if (result == TM_Invisible)
3481 {
3482 UnlockReleaseBuffer(buffer);
3483 ereport(ERROR,
3484 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
3485 errmsg("attempted to update invisible tuple")));
3486 }
3487 else if (result == TM_BeingModified && wait)
3488 {
3489 TransactionId xwait;
3490 uint16 infomask;
3491 bool can_continue = false;
3492
3493 /*
3494 * XXX note that we don't consider the "no wait" case here. This
3495 * isn't a problem currently because no caller uses that case, but it
3496 * should be fixed if such a caller is introduced. It wasn't a
3497 * problem previously because this code would always wait, but now
3498 * that some tuple locks do not conflict with one of the lock modes we
3499 * use, it is possible that this case is interesting to handle
3500 * specially.
3501 *
3502 * This may cause failures with third-party code that calls
3503 * heap_update directly.
3504 */
3505
3506 /* must copy state data before unlocking buffer */
3507 xwait = HeapTupleHeaderGetRawXmax(oldtup.t_data);
3508 infomask = oldtup.t_data->t_infomask;
3509
3510 /*
3511 * Now we have to do something about the existing locker. If it's a
3512 * multi, sleep on it; we might be awakened before it is completely
3513 * gone (or even not sleep at all in some cases); we need to preserve
3514 * it as locker, unless it is gone completely.
3515 *
3516 * If it's not a multi, we need to check for sleeping conditions
3517 * before actually going to sleep. If the update doesn't conflict
3518 * with the locks, we just continue without sleeping (but making sure
3519 * it is preserved).
3520 *
3521 * Before sleeping, we need to acquire tuple lock to establish our
3522 * priority for the tuple (see heap_lock_tuple). LockTuple will
3523 * release us when we are next-in-line for the tuple. Note we must
3524 * not acquire the tuple lock until we're sure we're going to sleep;
3525 * otherwise we're open for race conditions with other transactions
3526 * holding the tuple lock which sleep on us.
3527 *
3528 * If we are forced to "start over" below, we keep the tuple lock;
3529 * this arranges that we stay at the head of the line while rechecking
3530 * tuple state.
3531 */
3532 if (infomask & HEAP_XMAX_IS_MULTI)
3533 {
3534 TransactionId update_xact;
3535 int remain;
3536 bool current_is_member = false;
3537
3538 if (DoesMultiXactIdConflict((MultiXactId) xwait, infomask,
3539 *lockmode, &current_is_member))
3540 {
3542
3543 /*
3544 * Acquire the lock, if necessary (but skip it when we're
3545 * requesting a lock and already have one; avoids deadlock).
3546 */
3547 if (!current_is_member)
3548 heap_acquire_tuplock(relation, &(oldtup.t_self), *lockmode,
3549 LockWaitBlock, &have_tuple_lock);
3550
3551 /* wait for multixact */
3552 MultiXactIdWait((MultiXactId) xwait, mxact_status, infomask,
3553 relation, &oldtup.t_self, XLTW_Update,
3554 &remain);
3555 checked_lockers = true;
3556 locker_remains = remain != 0;
3558
3559 /*
3560 * If xwait had just locked the tuple then some other xact
3561 * could update this tuple before we get to this point. Check
3562 * for xmax change, and start over if so.
3563 */
3565 infomask) ||
3567 xwait))
3568 goto l2;
3569 }
3570
3571 /*
3572 * Note that the multixact may not be done by now. It could have
3573 * surviving members; our own xact or other subxacts of this
3574 * backend, and also any other concurrent transaction that locked
3575 * the tuple with LockTupleKeyShare if we only got
3576 * LockTupleNoKeyExclusive. If this is the case, we have to be
3577 * careful to mark the updated tuple with the surviving members in
3578 * Xmax.
3579 *
3580 * Note that there could have been another update in the
3581 * MultiXact. In that case, we need to check whether it committed
3582 * or aborted. If it aborted we are safe to update it again;
3583 * otherwise there is an update conflict, and we have to return
3584 * TableTuple{Deleted, Updated} below.
3585 *
3586 * In the LockTupleExclusive case, we still need to preserve the
3587 * surviving members: those would include the tuple locks we had
3588 * before this one, which are important to keep in case this
3589 * subxact aborts.
3590 */
3592 update_xact = HeapTupleGetUpdateXid(oldtup.t_data);
3593 else
3594 update_xact = InvalidTransactionId;
3595
3596 /*
3597 * There was no UPDATE in the MultiXact; or it aborted. No
3598 * TransactionIdIsInProgress() call needed here, since we called
3599 * MultiXactIdWait() above.
3600 */
3601 if (!TransactionIdIsValid(update_xact) ||
3602 TransactionIdDidAbort(update_xact))
3603 can_continue = true;
3604 }
3606 {
3607 /*
3608 * The only locker is ourselves; we can avoid grabbing the tuple
3609 * lock here, but must preserve our locking information.
3610 */
3611 checked_lockers = true;
3612 locker_remains = true;
3613 can_continue = true;
3614 }
3615 else if (HEAP_XMAX_IS_KEYSHR_LOCKED(infomask) && key_intact)
3616 {
3617 /*
3618 * If it's just a key-share locker, and we're not changing the key
3619 * columns, we don't need to wait for it to end; but we need to
3620 * preserve it as locker.
3621 */
3622 checked_lockers = true;
3623 locker_remains = true;
3624 can_continue = true;
3625 }
3626 else
3627 {
3628 /*
3629 * Wait for regular transaction to end; but first, acquire tuple
3630 * lock.
3631 */
3633 heap_acquire_tuplock(relation, &(oldtup.t_self), *lockmode,
3634 LockWaitBlock, &have_tuple_lock);
3635 XactLockTableWait(xwait, relation, &oldtup.t_self,
3636 XLTW_Update);
3637 checked_lockers = true;
3639
3640 /*
3641 * xwait is done, but if xwait had just locked the tuple then some
3642 * other xact could update this tuple before we get to this point.
3643 * Check for xmax change, and start over if so.
3644 */
3645 if (xmax_infomask_changed(oldtup.t_data->t_infomask, infomask) ||
3646 !TransactionIdEquals(xwait,
3648 goto l2;
3649
3650 /* Otherwise check if it committed or aborted */
3651 UpdateXmaxHintBits(oldtup.t_data, buffer, xwait);
3652 if (oldtup.t_data->t_infomask & HEAP_XMAX_INVALID)
3653 can_continue = true;
3654 }
3655
3656 if (can_continue)
3657 result = TM_Ok;
3658 else if (!ItemPointerEquals(&oldtup.t_self, &oldtup.t_data->t_ctid))
3659 result = TM_Updated;
3660 else
3661 result = TM_Deleted;
3662 }
3663
3664 /* Sanity check the result HeapTupleSatisfiesUpdate() and the logic above */
3665 if (result != TM_Ok)
3666 {
3667 Assert(result == TM_SelfModified ||
3668 result == TM_Updated ||
3669 result == TM_Deleted ||
3670 result == TM_BeingModified);
3672 Assert(result != TM_Updated ||
3673 !ItemPointerEquals(&oldtup.t_self, &oldtup.t_data->t_ctid));
3674 }
3675
3676 if (crosscheck != InvalidSnapshot && result == TM_Ok)
3677 {
3678 /* Perform additional check for transaction-snapshot mode RI updates */
3679 if (!HeapTupleSatisfiesVisibility(&oldtup, crosscheck, buffer))
3680 result = TM_Updated;
3681 }
3682
3683 if (result != TM_Ok)
3684 {
3685 tmfd->ctid = oldtup.t_data->t_ctid;
3686 tmfd->xmax = HeapTupleHeaderGetUpdateXid(oldtup.t_data);
3687 if (result == TM_SelfModified)
3688 tmfd->cmax = HeapTupleHeaderGetCmax(oldtup.t_data);
3689 else
3690 tmfd->cmax = InvalidCommandId;
3691 UnlockReleaseBuffer(buffer);
3692 if (have_tuple_lock)
3693 UnlockTupleTuplock(relation, &(oldtup.t_self), *lockmode);
3694 if (vmbuffer != InvalidBuffer)
3695 ReleaseBuffer(vmbuffer);
3696 *update_indexes = TU_None;
3697
3698 bms_free(hot_attrs);
3699 bms_free(sum_attrs);
3700 bms_free(key_attrs);
3701 bms_free(id_attrs);
3702 bms_free(modified_attrs);
3703 bms_free(interesting_attrs);
3704 return result;
3705 }
3706
3707 /*
3708 * If we didn't pin the visibility map page and the page has become all
3709 * visible while we were busy locking the buffer, or during some
3710 * subsequent window during which we had it unlocked, we'll have to unlock
3711 * and re-lock, to avoid holding the buffer lock across an I/O. That's a
3712 * bit unfortunate, especially since we'll now have to recheck whether the
3713 * tuple has been locked or updated under us, but hopefully it won't
3714 * happen very often.
3715 */
3716 if (vmbuffer == InvalidBuffer && PageIsAllVisible(page))
3717 {
3719 visibilitymap_pin(relation, block, &vmbuffer);
3721 goto l2;
3722 }
3723
3724 /* Fill in transaction status data */
3725
3726 /*
3727 * If the tuple we're updating is locked, we need to preserve the locking
3728 * info in the old tuple's Xmax. Prepare a new Xmax value for this.
3729 */
3731 oldtup.t_data->t_infomask,
3732 oldtup.t_data->t_infomask2,
3733 xid, *lockmode, true,
3734 &xmax_old_tuple, &infomask_old_tuple,
3735 &infomask2_old_tuple);
3736
3737 /*
3738 * And also prepare an Xmax value for the new copy of the tuple. If there
3739 * was no xmax previously, or there was one but all lockers are now gone,
3740 * then use InvalidTransactionId; otherwise, get the xmax from the old
3741 * tuple. (In rare cases that might also be InvalidTransactionId and yet
3742 * not have the HEAP_XMAX_INVALID bit set; that's fine.)
3743 */
3744 if ((oldtup.t_data->t_infomask & HEAP_XMAX_INVALID) ||
3746 (checked_lockers && !locker_remains))
3747 xmax_new_tuple = InvalidTransactionId;
3748 else
3749 xmax_new_tuple = HeapTupleHeaderGetRawXmax(oldtup.t_data);
3750
3751 if (!TransactionIdIsValid(xmax_new_tuple))
3752 {
3753 infomask_new_tuple = HEAP_XMAX_INVALID;
3754 infomask2_new_tuple = 0;
3755 }
3756 else
3757 {
3758 /*
3759 * If we found a valid Xmax for the new tuple, then the infomask bits
3760 * to use on the new tuple depend on what was there on the old one.
3761 * Note that since we're doing an update, the only possibility is that
3762 * the lockers had FOR KEY SHARE lock.
3763 */
3764 if (oldtup.t_data->t_infomask & HEAP_XMAX_IS_MULTI)
3765 {
3766 GetMultiXactIdHintBits(xmax_new_tuple, &infomask_new_tuple,
3767 &infomask2_new_tuple);
3768 }
3769 else
3770 {
3771 infomask_new_tuple = HEAP_XMAX_KEYSHR_LOCK | HEAP_XMAX_LOCK_ONLY;
3772 infomask2_new_tuple = 0;
3773 }
3774 }
3775
3776 /*
3777 * Prepare the new tuple with the appropriate initial values of Xmin and
3778 * Xmax, as well as initial infomask bits as computed above.
3779 */
3780 newtup->t_data->t_infomask &= ~(HEAP_XACT_MASK);
3781 newtup->t_data->t_infomask2 &= ~(HEAP2_XACT_MASK);
3782 HeapTupleHeaderSetXmin(newtup->t_data, xid);
3783 HeapTupleHeaderSetCmin(newtup->t_data, cid);
3784 newtup->t_data->t_infomask |= HEAP_UPDATED | infomask_new_tuple;
3785 newtup->t_data->t_infomask2 |= infomask2_new_tuple;
3786 HeapTupleHeaderSetXmax(newtup->t_data, xmax_new_tuple);
3787
3788 /*
3789 * Replace cid with a combo CID if necessary. Note that we already put
3790 * the plain cid into the new tuple.
3791 */
3792 HeapTupleHeaderAdjustCmax(oldtup.t_data, &cid, &iscombo);
3793
3794 /*
3795 * If the toaster needs to be activated, OR if the new tuple will not fit
3796 * on the same page as the old, then we need to release the content lock
3797 * (but not the pin!) on the old tuple's buffer while we are off doing
3798 * TOAST and/or table-file-extension work. We must mark the old tuple to
3799 * show that it's locked, else other processes may try to update it
3800 * themselves.
3801 *
3802 * We need to invoke the toaster if there are already any out-of-line
3803 * toasted values present, or if the new tuple is over-threshold.
3804 */
3805 if (relation->rd_rel->relkind != RELKIND_RELATION &&
3806 relation->rd_rel->relkind != RELKIND_MATVIEW)
3807 {
3808 /* toast table entries should never be recursively toasted */
3809 Assert(!HeapTupleHasExternal(&oldtup));
3810 Assert(!HeapTupleHasExternal(newtup));
3811 need_toast = false;
3812 }
3813 else
3814 need_toast = (HeapTupleHasExternal(&oldtup) ||
3815 HeapTupleHasExternal(newtup) ||
3816 newtup->t_len > TOAST_TUPLE_THRESHOLD);
3817
3818 pagefree = PageGetHeapFreeSpace(page);
3819
3820 newtupsize = MAXALIGN(newtup->t_len);
3821
3822 if (need_toast || newtupsize > pagefree)
3823 {
3824 TransactionId xmax_lock_old_tuple;
3825 uint16 infomask_lock_old_tuple,
3826 infomask2_lock_old_tuple;
3827 bool cleared_all_frozen = false;
3828
3829 /*
3830 * To prevent concurrent sessions from updating the tuple, we have to
3831 * temporarily mark it locked, while we release the page-level lock.
3832 *
3833 * To satisfy the rule that any xid potentially appearing in a buffer
3834 * written out to disk, we unfortunately have to WAL log this
3835 * temporary modification. We can reuse xl_heap_lock for this
3836 * purpose. If we crash/error before following through with the
3837 * actual update, xmax will be of an aborted transaction, allowing
3838 * other sessions to proceed.
3839 */
3840
3841 /*
3842 * Compute xmax / infomask appropriate for locking the tuple. This has
3843 * to be done separately from the combo that's going to be used for
3844 * updating, because the potentially created multixact would otherwise
3845 * be wrong.
3846 */
3848 oldtup.t_data->t_infomask,
3849 oldtup.t_data->t_infomask2,
3850 xid, *lockmode, false,
3851 &xmax_lock_old_tuple, &infomask_lock_old_tuple,
3852 &infomask2_lock_old_tuple);
3853
3854 Assert(HEAP_XMAX_IS_LOCKED_ONLY(infomask_lock_old_tuple));
3855
3857
3858 /* Clear obsolete visibility flags ... */
3860 oldtup.t_data->t_infomask2 &= ~HEAP_KEYS_UPDATED;
3861 HeapTupleClearHotUpdated(&oldtup);
3862 /* ... and store info about transaction updating this tuple */
3863 Assert(TransactionIdIsValid(xmax_lock_old_tuple));
3864 HeapTupleHeaderSetXmax(oldtup.t_data, xmax_lock_old_tuple);
3865 oldtup.t_data->t_infomask |= infomask_lock_old_tuple;
3866 oldtup.t_data->t_infomask2 |= infomask2_lock_old_tuple;
3867 HeapTupleHeaderSetCmax(oldtup.t_data, cid, iscombo);
3868
3869 /* temporarily make it look not-updated, but locked */
3870 oldtup.t_data->t_ctid = oldtup.t_self;
3871
3872 /*
3873 * Clear all-frozen bit on visibility map if needed. We could
3874 * immediately reset ALL_VISIBLE, but given that the WAL logging
3875 * overhead would be unchanged, that doesn't seem necessarily
3876 * worthwhile.
3877 */
3878 if (PageIsAllVisible(page) &&
3879 visibilitymap_clear(relation, block, vmbuffer,
3881 cleared_all_frozen = true;
3882
3883 MarkBufferDirty(buffer);
3884
3885 if (RelationNeedsWAL(relation))
3886 {
3887 xl_heap_lock xlrec;
3888 XLogRecPtr recptr;
3889
3892
3893 xlrec.offnum = ItemPointerGetOffsetNumber(&oldtup.t_self);
3894 xlrec.xmax = xmax_lock_old_tuple;
3896 oldtup.t_data->t_infomask2);
3897 xlrec.flags =
3898 cleared_all_frozen ? XLH_LOCK_ALL_FROZEN_CLEARED : 0;
3900 recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_LOCK);
3901 PageSetLSN(page, recptr);
3902 }
3903
3905
3907
3908 /*
3909 * Let the toaster do its thing, if needed.
3910 *
3911 * Note: below this point, heaptup is the data we actually intend to
3912 * store into the relation; newtup is the caller's original untoasted
3913 * data.
3914 */
3915 if (need_toast)
3916 {
3917 /* Note we always use WAL and FSM during updates */
3918 heaptup = heap_toast_insert_or_update(relation, newtup, &oldtup, 0);
3919 newtupsize = MAXALIGN(heaptup->t_len);
3920 }
3921 else
3922 heaptup = newtup;
3923
3924 /*
3925 * Now, do we need a new page for the tuple, or not? This is a bit
3926 * tricky since someone else could have added tuples to the page while
3927 * we weren't looking. We have to recheck the available space after
3928 * reacquiring the buffer lock. But don't bother to do that if the
3929 * former amount of free space is still not enough; it's unlikely
3930 * there's more free now than before.
3931 *
3932 * What's more, if we need to get a new page, we will need to acquire
3933 * buffer locks on both old and new pages. To avoid deadlock against
3934 * some other backend trying to get the same two locks in the other
3935 * order, we must be consistent about the order we get the locks in.
3936 * We use the rule "lock the lower-numbered page of the relation
3937 * first". To implement this, we must do RelationGetBufferForTuple
3938 * while not holding the lock on the old page, and we must rely on it
3939 * to get the locks on both pages in the correct order.
3940 *
3941 * Another consideration is that we need visibility map page pin(s) if
3942 * we will have to clear the all-visible flag on either page. If we
3943 * call RelationGetBufferForTuple, we rely on it to acquire any such
3944 * pins; but if we don't, we have to handle that here. Hence we need
3945 * a loop.
3946 */
3947 for (;;)
3948 {
3949 if (newtupsize > pagefree)
3950 {
3951 /* It doesn't fit, must use RelationGetBufferForTuple. */
3952 newbuf = RelationGetBufferForTuple(relation, heaptup->t_len,
3953 buffer, 0, NULL,
3954 &vmbuffer_new, &vmbuffer,
3955 0);
3956 /* We're all done. */
3957 break;
3958 }
3959 /* Acquire VM page pin if needed and we don't have it. */
3960 if (vmbuffer == InvalidBuffer && PageIsAllVisible(page))
3961 visibilitymap_pin(relation, block, &vmbuffer);
3962 /* Re-acquire the lock on the old tuple's page. */
3964 /* Re-check using the up-to-date free space */
3965 pagefree = PageGetHeapFreeSpace(page);
3966 if (newtupsize > pagefree ||
3967 (vmbuffer == InvalidBuffer && PageIsAllVisible(page)))
3968 {
3969 /*
3970 * Rats, it doesn't fit anymore, or somebody just now set the
3971 * all-visible flag. We must now unlock and loop to avoid
3972 * deadlock. Fortunately, this path should seldom be taken.
3973 */
3975 }
3976 else
3977 {
3978 /* We're all done. */
3979 newbuf = buffer;
3980 break;
3981 }
3982 }
3983 }
3984 else
3985 {
3986 /* No TOAST work needed, and it'll fit on same page */
3987 newbuf = buffer;
3988 heaptup = newtup;
3989 }
3990
3991 /*
3992 * We're about to do the actual update -- check for conflict first, to
3993 * avoid possibly having to roll back work we've just done.
3994 *
3995 * This is safe without a recheck as long as there is no possibility of
3996 * another process scanning the pages between this check and the update
3997 * being visible to the scan (i.e., exclusive buffer content lock(s) are
3998 * continuously held from this point until the tuple update is visible).
3999 *
4000 * For the new tuple the only check needed is at the relation level, but
4001 * since both tuples are in the same relation and the check for oldtup
4002 * will include checking the relation level, there is no benefit to a
4003 * separate check for the new tuple.
4004 */
4005 CheckForSerializableConflictIn(relation, &oldtup.t_self,
4006 BufferGetBlockNumber(buffer));
4007
4008 /*
4009 * At this point newbuf and buffer are both pinned and locked, and newbuf
4010 * has enough space for the new tuple. If they are the same buffer, only
4011 * one pin is held.
4012 */
4013
4014 if (newbuf == buffer)
4015 {
4016 /*
4017 * Since the new tuple is going into the same page, we might be able
4018 * to do a HOT update. Check if any of the index columns have been
4019 * changed.
4020 */
4021 if (!bms_overlap(modified_attrs, hot_attrs))
4022 {
4023 use_hot_update = true;
4024
4025 /*
4026 * If none of the columns that are used in hot-blocking indexes
4027 * were updated, we can apply HOT, but we do still need to check
4028 * if we need to update the summarizing indexes, and update those
4029 * indexes if the columns were updated, or we may fail to detect
4030 * e.g. value bound changes in BRIN minmax indexes.
4031 */
4032 if (bms_overlap(modified_attrs, sum_attrs))
4033 summarized_update = true;
4034 }
4035 }
4036 else
4037 {
4038 /* Set a hint that the old page could use prune/defrag */
4039 PageSetFull(page);
4040 }
4041
4042 /*
4043 * Compute replica identity tuple before entering the critical section so
4044 * we don't PANIC upon a memory allocation failure.
4045 * ExtractReplicaIdentity() will return NULL if nothing needs to be
4046 * logged. Pass old key required as true only if the replica identity key
4047 * columns are modified or it has external data.
4048 */
4049 old_key_tuple = ExtractReplicaIdentity(relation, &oldtup,
4050 bms_overlap(modified_attrs, id_attrs) ||
4051 id_has_external,
4052 &old_key_copied);
4053
4054 /* NO EREPORT(ERROR) from here till changes are logged */
4056
4057 /*
4058 * If this transaction commits, the old tuple will become DEAD sooner or
4059 * later. Set flag that this page is a candidate for pruning once our xid
4060 * falls below the OldestXmin horizon. If the transaction finally aborts,
4061 * the subsequent page pruning will be a no-op and the hint will be
4062 * cleared.
4063 *
4064 * XXX Should we set hint on newbuf as well? If the transaction aborts,
4065 * there would be a prunable tuple in the newbuf; but for now we choose
4066 * not to optimize for aborts. Note that heap_xlog_update must be kept in
4067 * sync if this decision changes.
4068 */
4069 PageSetPrunable(page, xid);
4070
4071 if (use_hot_update)
4072 {
4073 /* Mark the old tuple as HOT-updated */
4074 HeapTupleSetHotUpdated(&oldtup);
4075 /* And mark the new tuple as heap-only */
4076 HeapTupleSetHeapOnly(heaptup);
4077 /* Mark the caller's copy too, in case different from heaptup */
4078 HeapTupleSetHeapOnly(newtup);
4079 }
4080 else
4081 {
4082 /* Make sure tuples are correctly marked as not-HOT */
4083 HeapTupleClearHotUpdated(&oldtup);
4084 HeapTupleClearHeapOnly(heaptup);
4085 HeapTupleClearHeapOnly(newtup);
4086 }
4087
4088 RelationPutHeapTuple(relation, newbuf, heaptup, false); /* insert new tuple */
4089
4090
4091 /* Clear obsolete visibility flags, possibly set by ourselves above... */
4093 oldtup.t_data->t_infomask2 &= ~HEAP_KEYS_UPDATED;
4094 /* ... and store info about transaction updating this tuple */
4095 Assert(TransactionIdIsValid(xmax_old_tuple));
4096 HeapTupleHeaderSetXmax(oldtup.t_data, xmax_old_tuple);
4097 oldtup.t_data->t_infomask |= infomask_old_tuple;
4098 oldtup.t_data->t_infomask2 |= infomask2_old_tuple;
4099 HeapTupleHeaderSetCmax(oldtup.t_data, cid, iscombo);
4100
4101 /* record address of new tuple in t_ctid of old one */
4102 oldtup.t_data->t_ctid = heaptup->t_self;
4103
4104 /* clear PD_ALL_VISIBLE flags, reset all visibilitymap bits */
4105 if (PageIsAllVisible(BufferGetPage(buffer)))
4106 {
4107 all_visible_cleared = true;
4109 visibilitymap_clear(relation, BufferGetBlockNumber(buffer),
4110 vmbuffer, VISIBILITYMAP_VALID_BITS);
4111 }
4112 if (newbuf != buffer && PageIsAllVisible(BufferGetPage(newbuf)))
4113 {
4114 all_visible_cleared_new = true;
4116 visibilitymap_clear(relation, BufferGetBlockNumber(newbuf),
4117 vmbuffer_new, VISIBILITYMAP_VALID_BITS);
4118 }
4119
4120 if (newbuf != buffer)
4121 MarkBufferDirty(newbuf);
4122 MarkBufferDirty(buffer);
4123
4124 /* XLOG stuff */
4125 if (RelationNeedsWAL(relation))
4126 {
4127 XLogRecPtr recptr;
4128
4129 /*
4130 * For logical decoding we need combo CIDs to properly decode the
4131 * catalog.
4132 */
4134 {
4135 log_heap_new_cid(relation, &oldtup);
4136 log_heap_new_cid(relation, heaptup);
4137 }
4138
4139 recptr = log_heap_update(relation, buffer,
4140 newbuf, &oldtup, heaptup,
4141 old_key_tuple,
4142 all_visible_cleared,
4143 all_visible_cleared_new);
4144 if (newbuf != buffer)
4145 {
4146 PageSetLSN(BufferGetPage(newbuf), recptr);
4147 }
4148 PageSetLSN(BufferGetPage(buffer), recptr);
4149 }
4150
4152
4153 if (newbuf != buffer)
4156
4157 /*
4158 * Mark old tuple for invalidation from system caches at next command
4159 * boundary, and mark the new tuple for invalidation in case we abort. We
4160 * have to do this before releasing the buffer because oldtup is in the
4161 * buffer. (heaptup is all in local memory, but it's necessary to process
4162 * both tuple versions in one call to inval.c so we can avoid redundant
4163 * sinval messages.)
4164 */
4165 CacheInvalidateHeapTuple(relation, &oldtup, heaptup);
4166
4167 /* Now we can release the buffer(s) */
4168 if (newbuf != buffer)
4169 ReleaseBuffer(newbuf);
4170 ReleaseBuffer(buffer);
4171 if (BufferIsValid(vmbuffer_new))
4172 ReleaseBuffer(vmbuffer_new);
4173 if (BufferIsValid(vmbuffer))
4174 ReleaseBuffer(vmbuffer);
4175
4176 /*
4177 * Release the lmgr tuple lock, if we had it.
4178 */
4179 if (have_tuple_lock)
4180 UnlockTupleTuplock(relation, &(oldtup.t_self), *lockmode);
4181
4182 pgstat_count_heap_update(relation, use_hot_update, newbuf != buffer);
4183
4184 /*
4185 * If heaptup is a private copy, release it. Don't forget to copy t_self
4186 * back to the caller's image, too.
4187 */
4188 if (heaptup != newtup)
4189 {
4190 newtup->t_self = heaptup->t_self;
4191 heap_freetuple(heaptup);
4192 }
4193
4194 /*
4195 * If it is a HOT update, the update may still need to update summarized
4196 * indexes, lest we fail to update those summaries and get incorrect
4197 * results (for example, minmax bounds of the block may change with this
4198 * update).
4199 */
4200 if (use_hot_update)
4201 {
4202 if (summarized_update)
4203 *update_indexes = TU_Summarizing;
4204 else
4205 *update_indexes = TU_None;
4206 }
4207 else
4208 *update_indexes = TU_All;
4209
4210 if (old_key_tuple != NULL && old_key_copied)
4211 heap_freetuple(old_key_tuple);
4212
4213 bms_free(hot_attrs);
4214 bms_free(sum_attrs);
4215 bms_free(key_attrs);
4216 bms_free(id_attrs);
4217 bms_free(modified_attrs);
4218 bms_free(interesting_attrs);
4219
4220 return TM_Ok;
4221}
Bitmapset * bms_add_members(Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:917
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:582
static void PageSetFull(Page page)
Definition: bufpage.h:418
static Bitmapset * HeapDetermineColumnsInfo(Relation relation, Bitmapset *interesting_cols, Bitmapset *external_cols, HeapTuple oldtup, HeapTuple newtup, bool *has_external)
Definition: heapam.c:4401
static XLogRecPtr log_heap_update(Relation reln, Buffer oldbuf, Buffer newbuf, HeapTuple oldtup, HeapTuple newtup, HeapTuple old_key_tuple, bool all_visible_cleared, bool new_all_visible_cleared)
Definition: heapam.c:8838
TransactionId HeapTupleGetUpdateXid(const HeapTupleHeaderData *tup)
Definition: heapam.c:7579
static void HeapTupleClearHotUpdated(const HeapTupleData *tuple)
Definition: htup_details.h:780
static void HeapTupleSetHeapOnly(const HeapTupleData *tuple)
Definition: htup_details.h:792
static void HeapTupleSetHotUpdated(const HeapTupleData *tuple)
Definition: htup_details.h:774
static void HeapTupleClearHeapOnly(const HeapTupleData *tuple)
Definition: htup_details.h:798
#define HEAP_UPDATED
Definition: htup_details.h:210
#define INJECTION_POINT(name, arg)
void pgstat_count_heap_update(Relation rel, bool hot, bool newpage)
@ INDEX_ATTR_BITMAP_KEY
Definition: relcache.h:69
@ INDEX_ATTR_BITMAP_HOT_BLOCKING
Definition: relcache.h:72
@ INDEX_ATTR_BITMAP_SUMMARIZED
Definition: relcache.h:73
bool RelationSupportsSysCache(Oid relid)
Definition: syscache.c:762
@ TU_Summarizing
Definition: tableam.h:119
@ TU_All
Definition: tableam.h:116
@ TU_None
Definition: tableam.h:113

References Assert(), AssertHasSnapshotForToast(), bms_add_members(), bms_free(), bms_overlap(), BUFFER_LOCK_EXCLUSIVE, BUFFER_LOCK_UNLOCK, BufferGetBlockNumber(), BufferGetPage(), BufferIsValid(), CacheInvalidateHeapTuple(), CheckForSerializableConflictIn(), TM_FailureData::cmax, compute_infobits(), compute_new_xmax_infomask(), TM_FailureData::ctid, DoesMultiXactIdConflict(), END_CRIT_SECTION, ereport, errcode(), errmsg(), ERROR, ExtractReplicaIdentity(), xl_heap_lock::flags, GetCurrentTransactionId(), GetMultiXactIdHintBits(), HEAP2_XACT_MASK, heap_acquire_tuplock(), heap_freetuple(), HEAP_LOCKED_UPGRADED(), HEAP_MOVED, heap_toast_insert_or_update(), HEAP_UPDATED, HEAP_XACT_MASK, HEAP_XMAX_BITS, HEAP_XMAX_INVALID, HEAP_XMAX_IS_KEYSHR_LOCKED(), HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HEAP_XMAX_KEYSHR_LOCK, HEAP_XMAX_LOCK_ONLY, HeapDetermineColumnsInfo(), HeapTupleClearHeapOnly(), HeapTupleClearHotUpdated(), HeapTupleGetUpdateXid(), HeapTupleHasExternal(), HeapTupleHeaderAdjustCmax(), HeapTupleHeaderGetCmax(), HeapTupleHeaderGetNatts, HeapTupleHeaderGetRawXmax(), HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderSetCmax(), HeapTupleHeaderSetCmin(), HeapTupleHeaderSetXmax(), HeapTupleHeaderSetXmin(), HeapTupleSatisfiesUpdate(), HeapTupleSatisfiesVisibility(), HeapTupleSetHeapOnly(), HeapTupleSetHotUpdated(), INDEX_ATTR_BITMAP_HOT_BLOCKING, INDEX_ATTR_BITMAP_IDENTITY_KEY, INDEX_ATTR_BITMAP_KEY, INDEX_ATTR_BITMAP_SUMMARIZED, xl_heap_lock::infobits_set, INJECTION_POINT, InvalidBuffer, InvalidCommandId, InvalidSnapshot, InvalidTransactionId, IsInParallelMode(), ItemIdGetLength, ItemIdIsNormal, ItemPointerEquals(), ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), ItemPointerIsValid(), LockBuffer(), LockTupleExclusive, LockTupleNoKeyExclusive, LockWaitBlock, log_heap_new_cid(), log_heap_update(), MarkBufferDirty(), MAXALIGN, MultiXactIdSetOldestMember(), MultiXactIdWait(), MultiXactStatusNoKeyUpdate, MultiXactStatusUpdate, xl_heap_lock::offnum, PageClearAllVisible(), PageGetHeapFreeSpace(), PageGetItem(), PageGetItemId(), PageIsAllVisible(), PageSetFull(), PageSetLSN(), PageSetPrunable, pgstat_count_heap_update(), RelationData::rd_rel, ReadBuffer(), REGBUF_STANDARD, RelationGetBufferForTuple(), RelationGetIndexAttrBitmap(), RelationGetNumberOfAttributes, RelationGetRelid, RelationIsAccessibleInLogicalDecoding, RelationNeedsWAL, RelationPutHeapTuple(), RelationSupportsSysCache(), ReleaseBuffer(), SizeOfHeapLock, START_CRIT_SECTION, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, HeapTupleHeaderData::t_infomask, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_self, HeapTupleData::t_tableOid, TM_BeingModified, TM_Deleted, TM_Invisible, TM_Ok, TM_SelfModified, TM_Updated, TOAST_TUPLE_THRESHOLD, TransactionIdDidAbort(), TransactionIdEquals, TransactionIdIsCurrentTransactionId(), TransactionIdIsValid, TU_All, TU_None, TU_Summarizing, UnlockReleaseBuffer(), UnlockTupleTuplock, UpdateXmaxHintBits(), VISIBILITYMAP_ALL_FROZEN, visibilitymap_clear(), visibilitymap_pin(), VISIBILITYMAP_VALID_BITS, XactLockTableWait(), XLH_LOCK_ALL_FROZEN_CLEARED, XLOG_HEAP_LOCK, XLogBeginInsert(), XLogInsert(), XLogRegisterBuffer(), XLogRegisterData(), XLTW_Update, xl_heap_lock::xmax, TM_FailureData::xmax, and xmax_infomask_changed().

Referenced by heapam_tuple_update(), and simple_heap_update().

◆ HeapCheckForSerializableConflictOut()

void HeapCheckForSerializableConflictOut ( bool  visible,
Relation  relation,
HeapTuple  tuple,
Buffer  buffer,
Snapshot  snapshot 
)

Definition at line 9245 of file heapam.c.

9248{
9249 TransactionId xid;
9250 HTSV_Result htsvResult;
9251
9252 if (!CheckForSerializableConflictOutNeeded(relation, snapshot))
9253 return;
9254
9255 /*
9256 * Check to see whether the tuple has been written to by a concurrent
9257 * transaction, either to create it not visible to us, or to delete it
9258 * while it is visible to us. The "visible" bool indicates whether the
9259 * tuple is visible to us, while HeapTupleSatisfiesVacuum checks what else
9260 * is going on with it.
9261 *
9262 * In the event of a concurrently inserted tuple that also happens to have
9263 * been concurrently updated (by a separate transaction), the xmin of the
9264 * tuple will be used -- not the updater's xid.
9265 */
9266 htsvResult = HeapTupleSatisfiesVacuum(tuple, TransactionXmin, buffer);
9267 switch (htsvResult)
9268 {
9269 case HEAPTUPLE_LIVE:
9270 if (visible)
9271 return;
9272 xid = HeapTupleHeaderGetXmin(tuple->t_data);
9273 break;
9276 if (visible)
9277 xid = HeapTupleHeaderGetUpdateXid(tuple->t_data);
9278 else
9279 xid = HeapTupleHeaderGetXmin(tuple->t_data);
9280
9282 {
9283 /* This is like the HEAPTUPLE_DEAD case */
9284 Assert(!visible);
9285 return;
9286 }
9287 break;
9289 xid = HeapTupleHeaderGetXmin(tuple->t_data);
9290 break;
9291 case HEAPTUPLE_DEAD:
9292 Assert(!visible);
9293 return;
9294 default:
9295
9296 /*
9297 * The only way to get to this default clause is if a new value is
9298 * added to the enum type without adding it to this switch
9299 * statement. That's a bug, so elog.
9300 */
9301 elog(ERROR, "unrecognized return value from HeapTupleSatisfiesVacuum: %u", htsvResult);
9302
9303 /*
9304 * In spite of having all enum values covered and calling elog on
9305 * this default, some compilers think this is a code path which
9306 * allows xid to be used below without initialization. Silence
9307 * that warning.
9308 */
9310 }
9311
9314
9315 /*
9316 * Find top level xid. Bail out if xid is too early to be a conflict, or
9317 * if it's our own xid.
9318 */
9320 return;
9323 return;
9324
9325 CheckForSerializableConflictOut(relation, xid, snapshot);
9326}
HTSV_Result
Definition: heapam.h:125
@ HEAPTUPLE_RECENTLY_DEAD
Definition: heapam.h:128
@ HEAPTUPLE_INSERT_IN_PROGRESS
Definition: heapam.h:129
@ HEAPTUPLE_LIVE
Definition: heapam.h:127
@ HEAPTUPLE_DELETE_IN_PROGRESS
Definition: heapam.h:130
@ HEAPTUPLE_DEAD
Definition: heapam.h:126
HTSV_Result HeapTupleSatisfiesVacuum(HeapTuple htup, TransactionId OldestXmin, Buffer buffer)
void CheckForSerializableConflictOut(Relation relation, TransactionId xid, Snapshot snapshot)
Definition: predicate.c:4023
TransactionId SubTransGetTopmostTransaction(TransactionId xid)
Definition: subtrans.c:162
bool TransactionIdFollowsOrEquals(TransactionId id1, TransactionId id2)
Definition: transam.c:329
TransactionId GetTopTransactionIdIfAny(void)
Definition: xact.c:441

References Assert(), CheckForSerializableConflictOut(), CheckForSerializableConflictOutNeeded(), elog, ERROR, GetTopTransactionIdIfAny(), HEAPTUPLE_DEAD, HEAPTUPLE_DELETE_IN_PROGRESS, HEAPTUPLE_INSERT_IN_PROGRESS, HEAPTUPLE_LIVE, HEAPTUPLE_RECENTLY_DEAD, HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderGetXmin(), HeapTupleSatisfiesVacuum(), InvalidTransactionId, SubTransGetTopmostTransaction(), HeapTupleData::t_data, TransactionIdEquals, TransactionIdFollowsOrEquals(), TransactionIdIsValid, TransactionIdPrecedes(), and TransactionXmin.

Referenced by BitmapHeapScanNextBlock(), heap_fetch(), heap_get_latest_tid(), heap_hot_search_buffer(), heapam_scan_sample_next_tuple(), heapgettup(), and page_collect_tuples().

◆ HeapDetermineColumnsInfo()

static Bitmapset * HeapDetermineColumnsInfo ( Relation  relation,
Bitmapset interesting_cols,
Bitmapset external_cols,
HeapTuple  oldtup,
HeapTuple  newtup,
bool *  has_external 
)
static

Definition at line 4401 of file heapam.c.

4406{
4407 int attidx;
4408 Bitmapset *modified = NULL;
4409 TupleDesc tupdesc = RelationGetDescr(relation);
4410
4411 attidx = -1;
4412 while ((attidx = bms_next_member(interesting_cols, attidx)) >= 0)
4413 {
4414 /* attidx is zero-based, attrnum is the normal attribute number */
4416 Datum value1,
4417 value2;
4418 bool isnull1,
4419 isnull2;
4420
4421 /*
4422 * If it's a whole-tuple reference, say "not equal". It's not really
4423 * worth supporting this case, since it could only succeed after a
4424 * no-op update, which is hardly a case worth optimizing for.
4425 */
4426 if (attrnum == 0)
4427 {
4428 modified = bms_add_member(modified, attidx);
4429 continue;
4430 }
4431
4432 /*
4433 * Likewise, automatically say "not equal" for any system attribute
4434 * other than tableOID; we cannot expect these to be consistent in a
4435 * HOT chain, or even to be set correctly yet in the new tuple.
4436 */
4437 if (attrnum < 0)
4438 {
4439 if (attrnum != TableOidAttributeNumber)
4440 {
4441 modified = bms_add_member(modified, attidx);
4442 continue;
4443 }
4444 }
4445
4446 /*
4447 * Extract the corresponding values. XXX this is pretty inefficient
4448 * if there are many indexed columns. Should we do a single
4449 * heap_deform_tuple call on each tuple, instead? But that doesn't
4450 * work for system columns ...
4451 */
4452 value1 = heap_getattr(oldtup, attrnum, tupdesc, &isnull1);
4453 value2 = heap_getattr(newtup, attrnum, tupdesc, &isnull2);
4454
4455 if (!heap_attr_equals(tupdesc, attrnum, value1,
4456 value2, isnull1, isnull2))
4457 {
4458 modified = bms_add_member(modified, attidx);
4459 continue;
4460 }
4461
4462 /*
4463 * No need to check attributes that can't be stored externally. Note
4464 * that system attributes can't be stored externally.
4465 */
4466 if (attrnum < 0 || isnull1 ||
4467 TupleDescCompactAttr(tupdesc, attrnum - 1)->attlen != -1)
4468 continue;
4469
4470 /*
4471 * Check if the old tuple's attribute is stored externally and is a
4472 * member of external_cols.
4473 */
4474 if (VARATT_IS_EXTERNAL((struct varlena *) DatumGetPointer(value1)) &&
4475 bms_is_member(attidx, external_cols))
4476 *has_external = true;
4477 }
4478
4479 return modified;
4480}
int16 AttrNumber
Definition: attnum.h:21
int bms_next_member(const Bitmapset *a, int prevbit)
Definition: bitmapset.c:1306
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:815
static bool heap_attr_equals(TupleDesc tupdesc, int attrnum, Datum value1, Datum value2, bool isnull1, bool isnull2)
Definition: heapam.c:4350
static Datum heap_getattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
Definition: htup_details.h:904
int16 attlen
Definition: pg_attribute.h:59
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:322
Definition: c.h:692
#define TableOidAttributeNumber
Definition: sysattr.h:26
static bool VARATT_IS_EXTERNAL(const void *PTR)
Definition: varatt.h:354

References attlen, bms_add_member(), bms_is_member(), bms_next_member(), DatumGetPointer(), FirstLowInvalidHeapAttributeNumber, heap_attr_equals(), heap_getattr(), RelationGetDescr, TableOidAttributeNumber, TupleDescCompactAttr(), and VARATT_IS_EXTERNAL().

Referenced by heap_update().

◆ heapgettup()

static void heapgettup ( HeapScanDesc  scan,
ScanDirection  dir,
int  nkeys,
ScanKey  key 
)
static

Definition at line 896 of file heapam.c.

900{
901 HeapTuple tuple = &(scan->rs_ctup);
902 Page page;
903 OffsetNumber lineoff;
904 int linesleft;
905
906 if (likely(scan->rs_inited))
907 {
908 /* continue from previously returned page/tuple */
910 page = heapgettup_continue_page(scan, dir, &linesleft, &lineoff);
911 goto continue_page;
912 }
913
914 /*
915 * advance the scan until we find a qualifying tuple or run out of stuff
916 * to scan
917 */
918 while (true)
919 {
920 heap_fetch_next_buffer(scan, dir);
921
922 /* did we run out of blocks to scan? */
923 if (!BufferIsValid(scan->rs_cbuf))
924 break;
925
927
929 page = heapgettup_start_page(scan, dir, &linesleft, &lineoff);
930continue_page:
931
932 /*
933 * Only continue scanning the page while we have lines left.
934 *
935 * Note that this protects us from accessing line pointers past
936 * PageGetMaxOffsetNumber(); both for forward scans when we resume the
937 * table scan, and for when we start scanning a new page.
938 */
939 for (; linesleft > 0; linesleft--, lineoff += dir)
940 {
941 bool visible;
942 ItemId lpp = PageGetItemId(page, lineoff);
943
944 if (!ItemIdIsNormal(lpp))
945 continue;
946
947 tuple->t_data = (HeapTupleHeader) PageGetItem(page, lpp);
948 tuple->t_len = ItemIdGetLength(lpp);
949 ItemPointerSet(&(tuple->t_self), scan->rs_cblock, lineoff);
950
951 visible = HeapTupleSatisfiesVisibility(tuple,
952 scan->rs_base.rs_snapshot,
953 scan->rs_cbuf);
954
956 tuple, scan->rs_cbuf,
957 scan->rs_base.rs_snapshot);
958
959 /* skip tuples not visible to this snapshot */
960 if (!visible)
961 continue;
962
963 /* skip any tuples that don't match the scan key */
964 if (key != NULL &&
966 nkeys, key))
967 continue;
968
970 scan->rs_coffset = lineoff;
971 return;
972 }
973
974 /*
975 * if we get here, it means we've exhausted the items on this page and
976 * it's time to move to the next.
977 */
979 }
980
981 /* end of scan */
982 if (BufferIsValid(scan->rs_cbuf))
983 ReleaseBuffer(scan->rs_cbuf);
984
985 scan->rs_cbuf = InvalidBuffer;
988 tuple->t_data = NULL;
989 scan->rs_inited = false;
990}
static void heap_fetch_next_buffer(HeapScanDesc scan, ScanDirection dir)
Definition: heapam.c:643
static Page heapgettup_continue_page(HeapScanDesc scan, ScanDirection dir, int *linesleft, OffsetNumber *lineoff)
Definition: heapam.c:766
static Page heapgettup_start_page(HeapScanDesc scan, ScanDirection dir, int *linesleft, OffsetNumber *lineoff)
Definition: heapam.c:735
OffsetNumber rs_coffset
Definition: heapam.h:68
static bool HeapKeyTest(HeapTuple tuple, TupleDesc tupdesc, int nkeys, ScanKey keys)
Definition: valid.h:28

References Assert(), BUFFER_LOCK_SHARE, BUFFER_LOCK_UNLOCK, BufferGetBlockNumber(), BufferIsValid(), heap_fetch_next_buffer(), HeapCheckForSerializableConflictOut(), heapgettup_continue_page(), heapgettup_start_page(), HeapKeyTest(), HeapTupleSatisfiesVisibility(), InvalidBlockNumber, InvalidBuffer, ItemIdGetLength, ItemIdIsNormal, ItemPointerSet(), sort-test::key, likely, LockBuffer(), PageGetItem(), PageGetItemId(), RelationGetDescr, ReleaseBuffer(), HeapScanDescData::rs_base, HeapScanDescData::rs_cblock, HeapScanDescData::rs_cbuf, HeapScanDescData::rs_coffset, HeapScanDescData::rs_ctup, HeapScanDescData::rs_inited, HeapScanDescData::rs_prefetch_block, TableScanDescData::rs_rd, TableScanDescData::rs_snapshot, HeapTupleData::t_data, HeapTupleData::t_len, and HeapTupleData::t_self.

Referenced by heap_getnext(), heap_getnextslot(), and heap_getnextslot_tidrange().

◆ heapgettup_advance_block()

static BlockNumber heapgettup_advance_block ( HeapScanDesc  scan,
BlockNumber  block,
ScanDirection  dir 
)
inlinestatic

Definition at line 812 of file heapam.c.

813{
814 Assert(scan->rs_base.rs_parallel == NULL);
815
817 {
818 block++;
819
820 /* wrap back to the start of the heap */
821 if (block >= scan->rs_nblocks)
822 block = 0;
823
824 /*
825 * Report our new scan position for synchronization purposes. We don't
826 * do that when moving backwards, however. That would just mess up any
827 * other forward-moving scanners.
828 *
829 * Note: we do this before checking for end of scan so that the final
830 * state of the position hint is back at the start of the rel. That's
831 * not strictly necessary, but otherwise when you run the same query
832 * multiple times the starting position would shift a little bit
833 * backwards on every invocation, which is confusing. We don't
834 * guarantee any specific ordering in general, though.
835 */
836 if (scan->rs_base.rs_flags & SO_ALLOW_SYNC)
837 ss_report_location(scan->rs_base.rs_rd, block);
838
839 /* we're done if we're back at where we started */
840 if (block == scan->rs_startblock)
841 return InvalidBlockNumber;
842
843 /* check if the limit imposed by heap_setscanlimits() is met */
844 if (scan->rs_numblocks != InvalidBlockNumber)
845 {
846 if (--scan->rs_numblocks == 0)
847 return InvalidBlockNumber;
848 }
849
850 return block;
851 }
852 else
853 {
854 /* we're done if the last block is the start position */
855 if (block == scan->rs_startblock)
856 return InvalidBlockNumber;
857
858 /* check if the limit imposed by heap_setscanlimits() is met */
859 if (scan->rs_numblocks != InvalidBlockNumber)
860 {
861 if (--scan->rs_numblocks == 0)
862 return InvalidBlockNumber;
863 }
864
865 /* wrap to the end of the heap when the last page was page 0 */
866 if (block == 0)
867 block = scan->rs_nblocks;
868
869 block--;
870
871 return block;
872 }
873}
void ss_report_location(Relation rel, BlockNumber location)
Definition: syncscan.c:289

References Assert(), InvalidBlockNumber, likely, HeapScanDescData::rs_base, TableScanDescData::rs_flags, HeapScanDescData::rs_nblocks, HeapScanDescData::rs_numblocks, TableScanDescData::rs_parallel, TableScanDescData::rs_rd, HeapScanDescData::rs_startblock, ScanDirectionIsForward, SO_ALLOW_SYNC, and ss_report_location().

Referenced by heap_scan_stream_read_next_serial().

◆ heapgettup_continue_page()

static Page heapgettup_continue_page ( HeapScanDesc  scan,
ScanDirection  dir,
int *  linesleft,
OffsetNumber lineoff 
)
inlinestatic

Definition at line 766 of file heapam.c.

768{
769 Page page;
770
771 Assert(scan->rs_inited);
773
774 /* Caller is responsible for ensuring buffer is locked if needed */
775 page = BufferGetPage(scan->rs_cbuf);
776
777 if (ScanDirectionIsForward(dir))
778 {
779 *lineoff = OffsetNumberNext(scan->rs_coffset);
780 *linesleft = PageGetMaxOffsetNumber(page) - (*lineoff) + 1;
781 }
782 else
783 {
784 /*
785 * The previous returned tuple may have been vacuumed since the
786 * previous scan when we use a non-MVCC snapshot, so we must
787 * re-establish the lineoff <= PageGetMaxOffsetNumber(page) invariant
788 */
789 *lineoff = Min(PageGetMaxOffsetNumber(page), OffsetNumberPrev(scan->rs_coffset));
790 *linesleft = *lineoff;
791 }
792
793 /* lineoff now references the physically previous or next tid */
794 return page;
795}
#define OffsetNumberNext(offsetNumber)
Definition: off.h:52
#define OffsetNumberPrev(offsetNumber)
Definition: off.h:54

References Assert(), BufferGetPage(), BufferIsValid(), Min, OffsetNumberNext, OffsetNumberPrev, PageGetMaxOffsetNumber(), HeapScanDescData::rs_cbuf, HeapScanDescData::rs_coffset, HeapScanDescData::rs_inited, and ScanDirectionIsForward.

Referenced by heapgettup().

◆ heapgettup_initial_block()

static pg_noinline BlockNumber heapgettup_initial_block ( HeapScanDesc  scan,
ScanDirection  dir 
)
static

Definition at line 688 of file heapam.c.

689{
690 Assert(!scan->rs_inited);
691 Assert(scan->rs_base.rs_parallel == NULL);
692
693 /* When there are no pages to scan, return InvalidBlockNumber */
694 if (scan->rs_nblocks == 0 || scan->rs_numblocks == 0)
695 return InvalidBlockNumber;
696
697 if (ScanDirectionIsForward(dir))
698 {
699 return scan->rs_startblock;
700 }
701 else
702 {
703 /*
704 * Disable reporting to syncscan logic in a backwards scan; it's not
705 * very likely anyone else is doing the same thing at the same time,
706 * and much more likely that we'll just bollix things for forward
707 * scanners.
708 */
709 scan->rs_base.rs_flags &= ~SO_ALLOW_SYNC;
710
711 /*
712 * Start from last page of the scan. Ensure we take into account
713 * rs_numblocks if it's been adjusted by heap_setscanlimits().
714 */
715 if (scan->rs_numblocks != InvalidBlockNumber)
716 return (scan->rs_startblock + scan->rs_numblocks - 1) % scan->rs_nblocks;
717
718 if (scan->rs_startblock > 0)
719 return scan->rs_startblock - 1;
720
721 return scan->rs_nblocks - 1;
722 }
723}

References Assert(), InvalidBlockNumber, HeapScanDescData::rs_base, TableScanDescData::rs_flags, HeapScanDescData::rs_inited, HeapScanDescData::rs_nblocks, HeapScanDescData::rs_numblocks, TableScanDescData::rs_parallel, HeapScanDescData::rs_startblock, and ScanDirectionIsForward.

Referenced by heap_scan_stream_read_next_serial().

◆ heapgettup_pagemode()

static void heapgettup_pagemode ( HeapScanDesc  scan,
ScanDirection  dir,
int  nkeys,
ScanKey  key 
)
static

Definition at line 1006 of file heapam.c.

1010{
1011 HeapTuple tuple = &(scan->rs_ctup);
1012 Page page;
1013 uint32 lineindex;
1014 uint32 linesleft;
1015
1016 if (likely(scan->rs_inited))
1017 {
1018 /* continue from previously returned page/tuple */
1019 page = BufferGetPage(scan->rs_cbuf);
1020
1021 lineindex = scan->rs_cindex + dir;
1022 if (ScanDirectionIsForward(dir))
1023 linesleft = scan->rs_ntuples - lineindex;
1024 else
1025 linesleft = scan->rs_cindex;
1026 /* lineindex now references the next or previous visible tid */
1027
1028 goto continue_page;
1029 }
1030
1031 /*
1032 * advance the scan until we find a qualifying tuple or run out of stuff
1033 * to scan
1034 */
1035 while (true)
1036 {
1037 heap_fetch_next_buffer(scan, dir);
1038
1039 /* did we run out of blocks to scan? */
1040 if (!BufferIsValid(scan->rs_cbuf))
1041 break;
1042
1044
1045 /* prune the page and determine visible tuple offsets */
1047 page = BufferGetPage(scan->rs_cbuf);
1048 linesleft = scan->rs_ntuples;
1049 lineindex = ScanDirectionIsForward(dir) ? 0 : linesleft - 1;
1050
1051 /* block is the same for all tuples, set it once outside the loop */
1053
1054 /* lineindex now references the next or previous visible tid */
1055continue_page:
1056
1057 for (; linesleft > 0; linesleft--, lineindex += dir)
1058 {
1059 ItemId lpp;
1060 OffsetNumber lineoff;
1061
1062 Assert(lineindex <= scan->rs_ntuples);
1063 lineoff = scan->rs_vistuples[lineindex];
1064 lpp = PageGetItemId(page, lineoff);
1065 Assert(ItemIdIsNormal(lpp));
1066
1067 tuple->t_data = (HeapTupleHeader) PageGetItem(page, lpp);
1068 tuple->t_len = ItemIdGetLength(lpp);
1069 ItemPointerSetOffsetNumber(&tuple->t_self, lineoff);
1070
1071 /* skip any tuples that don't match the scan key */
1072 if (key != NULL &&
1074 nkeys, key))
1075 continue;
1076
1077 scan->rs_cindex = lineindex;
1078 return;
1079 }
1080 }
1081
1082 /* end of scan */
1083 if (BufferIsValid(scan->rs_cbuf))
1084 ReleaseBuffer(scan->rs_cbuf);
1085 scan->rs_cbuf = InvalidBuffer;
1088 tuple->t_data = NULL;
1089 scan->rs_inited = false;
1090}
void heap_prepare_pagescan(TableScanDesc sscan)
Definition: heapam.c:552
static void ItemPointerSetBlockNumber(ItemPointerData *pointer, BlockNumber blockNumber)
Definition: itemptr.h:147
OffsetNumber rs_vistuples[MaxHeapTuplesPerPage]
Definition: heapam.h:100
uint32 rs_cindex
Definition: heapam.h:98

References Assert(), BufferGetBlockNumber(), BufferGetPage(), BufferIsValid(), heap_fetch_next_buffer(), heap_prepare_pagescan(), HeapKeyTest(), InvalidBlockNumber, InvalidBuffer, ItemIdGetLength, ItemIdIsNormal, ItemPointerSetBlockNumber(), ItemPointerSetOffsetNumber(), sort-test::key, likely, PageGetItem(), PageGetItemId(), RelationGetDescr, ReleaseBuffer(), HeapScanDescData::rs_cblock, HeapScanDescData::rs_cbuf, HeapScanDescData::rs_cindex, HeapScanDescData::rs_ctup, HeapScanDescData::rs_inited, HeapScanDescData::rs_ntuples, HeapScanDescData::rs_prefetch_block, TableScanDescData::rs_rd, ScanDirectionIsForward, HeapTupleData::t_data, HeapTupleData::t_len, and HeapTupleData::t_self.

Referenced by heap_getnext(), heap_getnextslot(), and heap_getnextslot_tidrange().

◆ heapgettup_start_page()

static Page heapgettup_start_page ( HeapScanDesc  scan,
ScanDirection  dir,
int *  linesleft,
OffsetNumber lineoff 
)
static

Definition at line 735 of file heapam.c.

737{
738 Page page;
739
740 Assert(scan->rs_inited);
742
743 /* Caller is responsible for ensuring buffer is locked if needed */
744 page = BufferGetPage(scan->rs_cbuf);
745
746 *linesleft = PageGetMaxOffsetNumber(page) - FirstOffsetNumber + 1;
747
748 if (ScanDirectionIsForward(dir))
749 *lineoff = FirstOffsetNumber;
750 else
751 *lineoff = (OffsetNumber) (*linesleft);
752
753 /* lineoff now references the physically previous or next tid */
754 return page;
755}

References Assert(), BufferGetPage(), BufferIsValid(), FirstOffsetNumber, PageGetMaxOffsetNumber(), HeapScanDescData::rs_cbuf, HeapScanDescData::rs_inited, and ScanDirectionIsForward.

Referenced by heapgettup().

◆ HeapTupleGetUpdateXid()

◆ HeapTupleHeaderAdvanceConflictHorizon()

void HeapTupleHeaderAdvanceConflictHorizon ( HeapTupleHeader  tuple,
TransactionId snapshotConflictHorizon 
)

Definition at line 7973 of file heapam.c.

7975{
7979
7980 if (tuple->t_infomask & HEAP_MOVED)
7981 {
7982 if (TransactionIdPrecedes(*snapshotConflictHorizon, xvac))
7983 *snapshotConflictHorizon = xvac;
7984 }
7985
7986 /*
7987 * Ignore tuples inserted by an aborted transaction or if the tuple was
7988 * updated/deleted by the inserting transaction.
7989 *
7990 * Look for a committed hint bit, or if no xmin bit is set, check clog.
7991 */
7992 if (HeapTupleHeaderXminCommitted(tuple) ||
7994 {
7995 if (xmax != xmin &&
7996 TransactionIdFollows(xmax, *snapshotConflictHorizon))
7997 *snapshotConflictHorizon = xmax;
7998 }
7999}
static bool HeapTupleHeaderXminInvalid(const HeapTupleHeaderData *tup)
Definition: htup_details.h:343
static bool HeapTupleHeaderXminCommitted(const HeapTupleHeaderData *tup)
Definition: htup_details.h:337
bool TransactionIdFollows(TransactionId id1, TransactionId id2)
Definition: transam.c:314

References HEAP_MOVED, HeapTupleHeaderGetUpdateXid(), HeapTupleHeaderGetXmin(), HeapTupleHeaderGetXvac(), HeapTupleHeaderXminCommitted(), HeapTupleHeaderXminInvalid(), HeapTupleHeaderData::t_infomask, TransactionIdDidCommit(), TransactionIdFollows(), and TransactionIdPrecedes().

Referenced by heap_index_delete_tuples(), heap_page_prune_and_freeze(), and heap_prune_chain().

◆ index_delete_check_htid()

static void index_delete_check_htid ( TM_IndexDeleteOp delstate,
Page  page,
OffsetNumber  maxoff,
ItemPointer  htid,
TM_IndexStatus istatus 
)
inlinestatic

Definition at line 8058 of file heapam.c.

8061{
8062 OffsetNumber indexpagehoffnum = ItemPointerGetOffsetNumber(htid);
8063 ItemId iid;
8064
8066
8067 if (unlikely(indexpagehoffnum > maxoff))
8068 ereport(ERROR,
8069 (errcode(ERRCODE_INDEX_CORRUPTED),
8070 errmsg_internal("heap tid from index tuple (%u,%u) points past end of heap page line pointer array at offset %u of block %u in index \"%s\"",
8072 indexpagehoffnum,
8073 istatus->idxoffnum, delstate->iblknum,
8074 RelationGetRelationName(delstate->irel))));
8075
8076 iid = PageGetItemId(page, indexpagehoffnum);
8077 if (unlikely(!ItemIdIsUsed(iid)))
8078 ereport(ERROR,
8079 (errcode(ERRCODE_INDEX_CORRUPTED),
8080 errmsg_internal("heap tid from index tuple (%u,%u) points to unused heap page item at offset %u of block %u in index \"%s\"",
8082 indexpagehoffnum,
8083 istatus->idxoffnum, delstate->iblknum,
8084 RelationGetRelationName(delstate->irel))));
8085
8086 if (ItemIdHasStorage(iid))
8087 {
8088 HeapTupleHeader htup;
8089
8090 Assert(ItemIdIsNormal(iid));
8091 htup = (HeapTupleHeader) PageGetItem(page, iid);
8092
8094 ereport(ERROR,
8095 (errcode(ERRCODE_INDEX_CORRUPTED),
8096 errmsg_internal("heap tid from index tuple (%u,%u) points to heap-only tuple at offset %u of block %u in index \"%s\"",
8098 indexpagehoffnum,
8099 istatus->idxoffnum, delstate->iblknum,
8100 RelationGetRelationName(delstate->irel))));
8101 }
8102}
#define ItemIdIsUsed(itemId)
Definition: itemid.h:92
#define ItemIdHasStorage(itemId)
Definition: itemid.h:120
#define OffsetNumberIsValid(offsetNumber)
Definition: off.h:39
Relation irel
Definition: tableam.h:246
BlockNumber iblknum
Definition: tableam.h:247
OffsetNumber idxoffnum
Definition: tableam.h:218

References Assert(), ereport, errcode(), errmsg_internal(), ERROR, HeapTupleHeaderIsHeapOnly(), TM_IndexDeleteOp::iblknum, TM_IndexStatus::idxoffnum, TM_IndexDeleteOp::irel, ItemIdHasStorage, ItemIdIsNormal, ItemIdIsUsed, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), OffsetNumberIsValid, PageGetItem(), PageGetItemId(), RelationGetRelationName, and unlikely.

Referenced by heap_index_delete_tuples().

◆ index_delete_sort()

static void index_delete_sort ( TM_IndexDeleteOp delstate)
static

Definition at line 8463 of file heapam.c.

8464{
8465 TM_IndexDelete *deltids = delstate->deltids;
8466 int ndeltids = delstate->ndeltids;
8467
8468 /*
8469 * Shellsort gap sequence (taken from Sedgewick-Incerpi paper).
8470 *
8471 * This implementation is fast with array sizes up to ~4500. This covers
8472 * all supported BLCKSZ values.
8473 */
8474 const int gaps[9] = {1968, 861, 336, 112, 48, 21, 7, 3, 1};
8475
8476 /* Think carefully before changing anything here -- keep swaps cheap */
8477 StaticAssertDecl(sizeof(TM_IndexDelete) <= 8,
8478 "element size exceeds 8 bytes");
8479
8480 for (int g = 0; g < lengthof(gaps); g++)
8481 {
8482 for (int hi = gaps[g], i = hi; i < ndeltids; i++)
8483 {
8484 TM_IndexDelete d = deltids[i];
8485 int j = i;
8486
8487 while (j >= hi && index_delete_sort_cmp(&deltids[j - hi], &d) >= 0)
8488 {
8489 deltids[j] = deltids[j - hi];
8490 j -= hi;
8491 }
8492 deltids[j] = d;
8493 }
8494 }
8495}
#define lengthof(array)
Definition: c.h:787
#define StaticAssertDecl(condition, errmessage)
Definition: c.h:935
static int index_delete_sort_cmp(TM_IndexDelete *deltid1, TM_IndexDelete *deltid2)
Definition: heapam.c:8427
int j
Definition: isn.c:78

References TM_IndexDeleteOp::deltids, i, index_delete_sort_cmp(), j, lengthof, TM_IndexDeleteOp::ndeltids, and StaticAssertDecl.

Referenced by heap_index_delete_tuples().

◆ index_delete_sort_cmp()

static int index_delete_sort_cmp ( TM_IndexDelete deltid1,
TM_IndexDelete deltid2 
)
inlinestatic

Definition at line 8427 of file heapam.c.

8428{
8429 ItemPointer tid1 = &deltid1->tid;
8430 ItemPointer tid2 = &deltid2->tid;
8431
8432 {
8435
8436 if (blk1 != blk2)
8437 return (blk1 < blk2) ? -1 : 1;
8438 }
8439 {
8442
8443 if (pos1 != pos2)
8444 return (pos1 < pos2) ? -1 : 1;
8445 }
8446
8447 Assert(false);
8448
8449 return 0;
8450}

References Assert(), ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), and TM_IndexDelete::tid.

Referenced by index_delete_sort().

◆ initscan()

static void initscan ( HeapScanDesc  scan,
ScanKey  key,
bool  keep_startblock 
)
static

Definition at line 350 of file heapam.c.

351{
352 ParallelBlockTableScanDesc bpscan = NULL;
353 bool allow_strat;
354 bool allow_sync;
355
356 /*
357 * Determine the number of blocks we have to scan.
358 *
359 * It is sufficient to do this once at scan start, since any tuples added
360 * while the scan is in progress will be invisible to my snapshot anyway.
361 * (That is not true when using a non-MVCC snapshot. However, we couldn't
362 * guarantee to return tuples added after scan start anyway, since they
363 * might go into pages we already scanned. To guarantee consistent
364 * results for a non-MVCC snapshot, the caller must hold some higher-level
365 * lock that ensures the interesting tuple(s) won't change.)
366 */
367 if (scan->rs_base.rs_parallel != NULL)
368 {
370 scan->rs_nblocks = bpscan->phs_nblocks;
371 }
372 else
374
375 /*
376 * If the table is large relative to NBuffers, use a bulk-read access
377 * strategy and enable synchronized scanning (see syncscan.c). Although
378 * the thresholds for these features could be different, we make them the
379 * same so that there are only two behaviors to tune rather than four.
380 * (However, some callers need to be able to disable one or both of these
381 * behaviors, independently of the size of the table; also there is a GUC
382 * variable that can disable synchronized scanning.)
383 *
384 * Note that table_block_parallelscan_initialize has a very similar test;
385 * if you change this, consider changing that one, too.
386 */
388 scan->rs_nblocks > NBuffers / 4)
389 {
390 allow_strat = (scan->rs_base.rs_flags & SO_ALLOW_STRAT) != 0;
391 allow_sync = (scan->rs_base.rs_flags & SO_ALLOW_SYNC) != 0;
392 }
393 else
394 allow_strat = allow_sync = false;
395
396 if (allow_strat)
397 {
398 /* During a rescan, keep the previous strategy object. */
399 if (scan->rs_strategy == NULL)
401 }
402 else
403 {
404 if (scan->rs_strategy != NULL)
406 scan->rs_strategy = NULL;
407 }
408
409 if (scan->rs_base.rs_parallel != NULL)
410 {
411 /* For parallel scan, believe whatever ParallelTableScanDesc says. */
414 else
415 scan->rs_base.rs_flags &= ~SO_ALLOW_SYNC;
416 }
417 else if (keep_startblock)
418 {
419 /*
420 * When rescanning, we want to keep the previous startblock setting,
421 * so that rewinding a cursor doesn't generate surprising results.
422 * Reset the active syncscan setting, though.
423 */
424 if (allow_sync && synchronize_seqscans)
426 else
427 scan->rs_base.rs_flags &= ~SO_ALLOW_SYNC;
428 }
429 else if (allow_sync && synchronize_seqscans)
430 {
433 }
434 else
435 {
436 scan->rs_base.rs_flags &= ~SO_ALLOW_SYNC;
437 scan->rs_startblock = 0;
438 }
439
441 scan->rs_inited = false;
442 scan->rs_ctup.t_data = NULL;
444 scan->rs_cbuf = InvalidBuffer;
446 scan->rs_ntuples = 0;
447 scan->rs_cindex = 0;
448
449 /*
450 * Initialize to ForwardScanDirection because it is most common and
451 * because heap scans go forward before going backward (e.g. CURSORs).
452 */
455
456 /* page-at-a-time fields are always invalid when not rs_inited */
457
458 /*
459 * copy the scan key, if appropriate
460 */
461 if (key != NULL && scan->rs_base.rs_nkeys > 0)
462 memcpy(scan->rs_base.rs_key, key, scan->rs_base.rs_nkeys * sizeof(ScanKeyData));
463
464 /*
465 * Currently, we only have a stats counter for sequential heap scans (but
466 * e.g for bitmap scans the underlying bitmap index scans will be counted,
467 * and for sample scans we update stats for tuple fetches).
468 */
469 if (scan->rs_base.rs_flags & SO_TYPE_SEQSCAN)
471}
@ BAS_BULKREAD
Definition: bufmgr.h:37
#define RelationGetNumberOfBlocks(reln)
Definition: bufmgr.h:284
int NBuffers
Definition: globals.c:142
static void ItemPointerSetInvalid(ItemPointerData *pointer)
Definition: itemptr.h:184
#define pgstat_count_heap_scan(rel)
Definition: pgstat.h:684
#define RelationUsesLocalBuffers(relation)
Definition: rel.h:646
struct ParallelBlockTableScanDescData * ParallelBlockTableScanDesc
Definition: relscan.h:102
@ ForwardScanDirection
Definition: sdir.h:28
BlockNumber ss_get_location(Relation rel, BlockNumber relnblocks)
Definition: syncscan.c:254
bool synchronize_seqscans
Definition: tableam.c:50

References BAS_BULKREAD, ForwardScanDirection, FreeAccessStrategy(), GetAccessStrategy(), InvalidBlockNumber, InvalidBuffer, ItemPointerSetInvalid(), sort-test::key, NBuffers, pgstat_count_heap_scan, ParallelBlockTableScanDescData::phs_nblocks, ParallelTableScanDescData::phs_syncscan, RelationGetNumberOfBlocks, RelationUsesLocalBuffers, HeapScanDescData::rs_base, HeapScanDescData::rs_cblock, HeapScanDescData::rs_cbuf, HeapScanDescData::rs_cindex, HeapScanDescData::rs_ctup, HeapScanDescData::rs_dir, TableScanDescData::rs_flags, HeapScanDescData::rs_inited, TableScanDescData::rs_key, HeapScanDescData::rs_nblocks, TableScanDescData::rs_nkeys, HeapScanDescData::rs_ntuples, HeapScanDescData::rs_numblocks, TableScanDescData::rs_parallel, HeapScanDescData::rs_prefetch_block, TableScanDescData::rs_rd, HeapScanDescData::rs_startblock, HeapScanDescData::rs_strategy, SO_ALLOW_STRAT, SO_ALLOW_SYNC, SO_TYPE_SEQSCAN, ss_get_location(), synchronize_seqscans, HeapTupleData::t_data, and HeapTupleData::t_self.

Referenced by heap_beginscan(), and heap_rescan().

◆ log_heap_new_cid()

static XLogRecPtr log_heap_new_cid ( Relation  relation,
HeapTuple  tup 
)
static

Definition at line 9060 of file heapam.c.

9061{
9062 xl_heap_new_cid xlrec;
9063
9064 XLogRecPtr recptr;
9065 HeapTupleHeader hdr = tup->t_data;
9066
9068 Assert(tup->t_tableOid != InvalidOid);
9069
9070 xlrec.top_xid = GetTopTransactionId();
9071 xlrec.target_locator = relation->rd_locator;
9072 xlrec.target_tid = tup->t_self;
9073
9074 /*
9075 * If the tuple got inserted & deleted in the same TX we definitely have a
9076 * combo CID, set cmin and cmax.
9077 */
9078 if (hdr->t_infomask & HEAP_COMBOCID)
9079 {
9082 xlrec.cmin = HeapTupleHeaderGetCmin(hdr);
9083 xlrec.cmax = HeapTupleHeaderGetCmax(hdr);
9085 }
9086 /* No combo CID, so only cmin or cmax can be set by this TX */
9087 else
9088 {
9089 /*
9090 * Tuple inserted.
9091 *
9092 * We need to check for LOCK ONLY because multixacts might be
9093 * transferred to the new tuple in case of FOR KEY SHARE updates in
9094 * which case there will be an xmax, although the tuple just got
9095 * inserted.
9096 */
9097 if (hdr->t_infomask & HEAP_XMAX_INVALID ||
9099 {
9101 xlrec.cmax = InvalidCommandId;
9102 }
9103 /* Tuple from a different tx updated or deleted. */
9104 else
9105 {
9106 xlrec.cmin = InvalidCommandId;
9108 }
9109 xlrec.combocid = InvalidCommandId;
9110 }
9111
9112 /*
9113 * Note that we don't need to register the buffer here, because this
9114 * operation does not modify the page. The insert/update/delete that
9115 * called us certainly did, but that's WAL-logged separately.
9116 */
9119
9120 /* will be looked at irrespective of origin */
9121
9122 recptr = XLogInsert(RM_HEAP2_ID, XLOG_HEAP2_NEW_CID);
9123
9124 return recptr;
9125}
CommandId HeapTupleHeaderGetCmin(const HeapTupleHeaderData *tup)
Definition: combocid.c:104
#define SizeOfHeapNewCid
Definition: heapam_xlog.h:469
#define XLOG_HEAP2_NEW_CID
Definition: heapam_xlog.h:66
static CommandId HeapTupleHeaderGetRawCommandId(const HeapTupleHeaderData *tup)
Definition: htup_details.h:415
#define HEAP_COMBOCID
Definition: htup_details.h:195
#define InvalidOid
Definition: postgres_ext.h:37
RelFileLocator rd_locator
Definition: rel.h:57
CommandId cmin
Definition: heapam_xlog.h:458
CommandId combocid
Definition: heapam_xlog.h:460
ItemPointerData target_tid
Definition: heapam_xlog.h:466
TransactionId top_xid
Definition: heapam_xlog.h:457
CommandId cmax
Definition: heapam_xlog.h:459
RelFileLocator target_locator
Definition: heapam_xlog.h:465
TransactionId GetTopTransactionId(void)
Definition: xact.c:426

References Assert(), xl_heap_new_cid::cmax, xl_heap_new_cid::cmin, xl_heap_new_cid::combocid, GetTopTransactionId(), HEAP_COMBOCID, HEAP_XMAX_INVALID, HEAP_XMAX_IS_LOCKED_ONLY(), HeapTupleHeaderGetCmax(), HeapTupleHeaderGetCmin(), HeapTupleHeaderGetRawCommandId(), HeapTupleHeaderXminInvalid(), InvalidCommandId, InvalidOid, ItemPointerIsValid(), RelationData::rd_locator, SizeOfHeapNewCid, HeapTupleData::t_data, HeapTupleHeaderData::t_infomask, HeapTupleData::t_self, HeapTupleData::t_tableOid, xl_heap_new_cid::target_locator, xl_heap_new_cid::target_tid, xl_heap_new_cid::top_xid, XLOG_HEAP2_NEW_CID, XLogBeginInsert(), XLogInsert(), and XLogRegisterData().

Referenced by heap_delete(), heap_insert(), heap_multi_insert(), and heap_update().

◆ log_heap_update()

static XLogRecPtr log_heap_update ( Relation  reln,
Buffer  oldbuf,
Buffer  newbuf,
HeapTuple  oldtup,
HeapTuple  newtup,
HeapTuple  old_key_tuple,
bool  all_visible_cleared,
bool  new_all_visible_cleared 
)
static

Definition at line 8838 of file heapam.c.

8842{
8843 xl_heap_update xlrec;
8844 xl_heap_header xlhdr;
8845 xl_heap_header xlhdr_idx;
8846 uint8 info;
8847 uint16 prefix_suffix[2];
8848 uint16 prefixlen = 0,
8849 suffixlen = 0;
8850 XLogRecPtr recptr;
8851 Page page = BufferGetPage(newbuf);
8852 bool need_tuple_data = RelationIsLogicallyLogged(reln);
8853 bool init;
8854 int bufflags;
8855
8856 /* Caller should not call me on a non-WAL-logged relation */
8857 Assert(RelationNeedsWAL(reln));
8858
8860
8861 if (HeapTupleIsHeapOnly(newtup))
8862 info = XLOG_HEAP_HOT_UPDATE;
8863 else
8864 info = XLOG_HEAP_UPDATE;
8865
8866 /*
8867 * If the old and new tuple are on the same page, we only need to log the
8868 * parts of the new tuple that were changed. That saves on the amount of
8869 * WAL we need to write. Currently, we just count any unchanged bytes in
8870 * the beginning and end of the tuple. That's quick to check, and
8871 * perfectly covers the common case that only one field is updated.
8872 *
8873 * We could do this even if the old and new tuple are on different pages,
8874 * but only if we don't make a full-page image of the old page, which is
8875 * difficult to know in advance. Also, if the old tuple is corrupt for
8876 * some reason, it would allow the corruption to propagate the new page,
8877 * so it seems best to avoid. Under the general assumption that most
8878 * updates tend to create the new tuple version on the same page, there
8879 * isn't much to be gained by doing this across pages anyway.
8880 *
8881 * Skip this if we're taking a full-page image of the new page, as we
8882 * don't include the new tuple in the WAL record in that case. Also
8883 * disable if wal_level='logical', as logical decoding needs to be able to
8884 * read the new tuple in whole from the WAL record alone.
8885 */
8886 if (oldbuf == newbuf && !need_tuple_data &&
8888 {
8889 char *oldp = (char *) oldtup->t_data + oldtup->t_data->t_hoff;
8890 char *newp = (char *) newtup->t_data + newtup->t_data->t_hoff;
8891 int oldlen = oldtup->t_len - oldtup->t_data->t_hoff;
8892 int newlen = newtup->t_len - newtup->t_data->t_hoff;
8893
8894 /* Check for common prefix between old and new tuple */
8895 for (prefixlen = 0; prefixlen < Min(oldlen, newlen); prefixlen++)
8896 {
8897 if (newp[prefixlen] != oldp[prefixlen])
8898 break;
8899 }
8900
8901 /*
8902 * Storing the length of the prefix takes 2 bytes, so we need to save
8903 * at least 3 bytes or there's no point.
8904 */
8905 if (prefixlen < 3)
8906 prefixlen = 0;
8907
8908 /* Same for suffix */
8909 for (suffixlen = 0; suffixlen < Min(oldlen, newlen) - prefixlen; suffixlen++)
8910 {
8911 if (newp[newlen - suffixlen - 1] != oldp[oldlen - suffixlen - 1])
8912 break;
8913 }
8914 if (suffixlen < 3)
8915 suffixlen = 0;
8916 }
8917
8918 /* Prepare main WAL data chain */
8919 xlrec.flags = 0;
8920 if (all_visible_cleared)
8922 if (new_all_visible_cleared)
8924 if (prefixlen > 0)
8926 if (suffixlen > 0)
8928 if (need_tuple_data)
8929 {
8931 if (old_key_tuple)
8932 {
8933 if (reln->rd_rel->relreplident == REPLICA_IDENTITY_FULL)
8935 else
8937 }
8938 }
8939
8940 /* If new tuple is the single and first tuple on page... */
8943 {
8944 info |= XLOG_HEAP_INIT_PAGE;
8945 init = true;
8946 }
8947 else
8948 init = false;
8949
8950 /* Prepare WAL data for the old page */
8952 xlrec.old_xmax = HeapTupleHeaderGetRawXmax(oldtup->t_data);
8954 oldtup->t_data->t_infomask2);
8955
8956 /* Prepare WAL data for the new page */
8958 xlrec.new_xmax = HeapTupleHeaderGetRawXmax(newtup->t_data);
8959
8960 bufflags = REGBUF_STANDARD;
8961 if (init)
8962 bufflags |= REGBUF_WILL_INIT;
8963 if (need_tuple_data)
8964 bufflags |= REGBUF_KEEP_DATA;
8965
8966 XLogRegisterBuffer(0, newbuf, bufflags);
8967 if (oldbuf != newbuf)
8969
8971
8972 /*
8973 * Prepare WAL data for the new tuple.
8974 */
8975 if (prefixlen > 0 || suffixlen > 0)
8976 {
8977 if (prefixlen > 0 && suffixlen > 0)
8978 {
8979 prefix_suffix[0] = prefixlen;
8980 prefix_suffix[1] = suffixlen;
8981 XLogRegisterBufData(0, &prefix_suffix, sizeof(uint16) * 2);
8982 }
8983 else if (prefixlen > 0)
8984 {
8985 XLogRegisterBufData(0, &prefixlen, sizeof(uint16));
8986 }
8987 else
8988 {
8989 XLogRegisterBufData(0, &suffixlen, sizeof(uint16));
8990 }
8991 }
8992
8993 xlhdr.t_infomask2 = newtup->t_data->t_infomask2;
8994 xlhdr.t_infomask = newtup->t_data->t_infomask;
8995 xlhdr.t_hoff = newtup->t_data->t_hoff;
8996 Assert(SizeofHeapTupleHeader + prefixlen + suffixlen <= newtup->t_len);
8997
8998 /*
8999 * PG73FORMAT: write bitmap [+ padding] [+ oid] + data
9000 *
9001 * The 'data' doesn't include the common prefix or suffix.
9002 */
9004 if (prefixlen == 0)
9005 {
9007 (char *) newtup->t_data + SizeofHeapTupleHeader,
9008 newtup->t_len - SizeofHeapTupleHeader - suffixlen);
9009 }
9010 else
9011 {
9012 /*
9013 * Have to write the null bitmap and data after the common prefix as
9014 * two separate rdata entries.
9015 */
9016 /* bitmap [+ padding] [+ oid] */
9017 if (newtup->t_data->t_hoff - SizeofHeapTupleHeader > 0)
9018 {
9020 (char *) newtup->t_data + SizeofHeapTupleHeader,
9022 }
9023
9024 /* data after common prefix */
9026 (char *) newtup->t_data + newtup->t_data->t_hoff + prefixlen,
9027 newtup->t_len - newtup->t_data->t_hoff - prefixlen - suffixlen);
9028 }
9029
9030 /* We need to log a tuple identity */
9031 if (need_tuple_data && old_key_tuple)
9032 {
9033 /* don't really need this, but its more comfy to decode */
9034 xlhdr_idx.t_infomask2 = old_key_tuple->t_data->t_infomask2;
9035 xlhdr_idx.t_infomask = old_key_tuple->t_data->t_infomask;
9036 xlhdr_idx.t_hoff = old_key_tuple->t_data->t_hoff;
9037
9039
9040 /* PG73FORMAT: write bitmap [+ padding] [+ oid] + data */
9041 XLogRegisterData((char *) old_key_tuple->t_data + SizeofHeapTupleHeader,
9042 old_key_tuple->t_len - SizeofHeapTupleHeader);
9043 }
9044
9045 /* filtering by origin on a row level is much more efficient */
9047
9048 recptr = XLogInsert(RM_HEAP_ID, info);
9049
9050 return recptr;
9051}
#define SizeOfHeapUpdate
Definition: heapam_xlog.h:233
#define XLH_UPDATE_NEW_ALL_VISIBLE_CLEARED
Definition: heapam_xlog.h:87
#define XLOG_HEAP_HOT_UPDATE
Definition: heapam_xlog.h:37
#define XLH_UPDATE_CONTAINS_NEW_TUPLE
Definition: heapam_xlog.h:90
#define XLOG_HEAP_UPDATE
Definition: heapam_xlog.h:35
#define XLH_UPDATE_CONTAINS_OLD_TUPLE
Definition: heapam_xlog.h:88
#define XLH_UPDATE_OLD_ALL_VISIBLE_CLEARED
Definition: heapam_xlog.h:85
#define XLH_UPDATE_SUFFIX_FROM_OLD
Definition: heapam_xlog.h:92
#define XLH_UPDATE_PREFIX_FROM_OLD
Definition: heapam_xlog.h:91
#define XLH_UPDATE_CONTAINS_OLD_KEY
Definition: heapam_xlog.h:89
TransactionId new_xmax
Definition: heapam_xlog.h:224
uint8 old_infobits_set
Definition: heapam_xlog.h:222
TransactionId old_xmax
Definition: heapam_xlog.h:220
OffsetNumber old_offnum
Definition: heapam_xlog.h:221
OffsetNumber new_offnum
Definition: heapam_xlog.h:225
bool XLogCheckBufferNeedsBackup(Buffer buffer)
Definition: xloginsert.c:1040

References Assert(), BufferGetPage(), compute_infobits(), FirstOffsetNumber, xl_heap_update::flags, HeapTupleHeaderGetRawXmax(), HeapTupleIsHeapOnly(), init, ItemPointerGetOffsetNumber(), Min, xl_heap_update::new_offnum, xl_heap_update::new_xmax, xl_heap_update::old_infobits_set, xl_heap_update::old_offnum, xl_heap_update::old_xmax, PageGetMaxOffsetNumber(), RelationData::rd_rel, REGBUF_KEEP_DATA, REGBUF_STANDARD, REGBUF_WILL_INIT, RelationIsLogicallyLogged, RelationNeedsWAL, SizeOfHeapHeader, SizeofHeapTupleHeader, SizeOfHeapUpdate, HeapTupleData::t_data, xl_heap_header::t_hoff, HeapTupleHeaderData::t_hoff, xl_heap_header::t_infomask, HeapTupleHeaderData::t_infomask, xl_heap_header::t_infomask2, HeapTupleHeaderData::t_infomask2, HeapTupleData::t_len, HeapTupleData::t_self, XLH_UPDATE_CONTAINS_NEW_TUPLE, XLH_UPDATE_CONTAINS_OLD_KEY, XLH_UPDATE_CONTAINS_OLD_TUPLE, XLH_UPDATE_NEW_ALL_VISIBLE_CLEARED, XLH_UPDATE_OLD_ALL_VISIBLE_CLEARED, XLH_UPDATE_PREFIX_FROM_OLD, XLH_UPDATE_SUFFIX_FROM_OLD, XLOG_HEAP_HOT_UPDATE, XLOG_HEAP_INIT_PAGE, XLOG_HEAP_UPDATE, XLOG_INCLUDE_ORIGIN, XLogBeginInsert(), XLogCheckBufferNeedsBackup(), XLogInsert(), XLogRegisterBufData(), XLogRegisterBuffer(), XLogRegisterData(), and XLogSetRecordFlags().

Referenced by heap_update().

◆ log_heap_visible()

XLogRecPtr log_heap_visible ( Relation  rel,
Buffer  heap_buffer,
Buffer  vm_buffer,
TransactionId  snapshotConflictHorizon,
uint8  vmflags 
)

Definition at line 8804 of file heapam.c.

8806{
8807 xl_heap_visible xlrec;
8808 XLogRecPtr recptr;
8809 uint8 flags;
8810
8811 Assert(BufferIsValid(heap_buffer));
8812 Assert(BufferIsValid(vm_buffer));
8813
8814 xlrec.snapshotConflictHorizon = snapshotConflictHorizon;
8815 xlrec.flags = vmflags;
8820
8821 XLogRegisterBuffer(0, vm_buffer, 0);
8822
8823 flags = REGBUF_STANDARD;
8824 if (!XLogHintBitIsNeeded())
8825 flags |= REGBUF_NO_IMAGE;
8826 XLogRegisterBuffer(1, heap_buffer, flags);
8827
8828 recptr = XLogInsert(RM_HEAP2_ID, XLOG_HEAP2_VISIBLE);
8829
8830 return recptr;
8831}
#define SizeOfHeapVisible
Definition: heapam_xlog.h:449
#define XLOG_HEAP2_VISIBLE
Definition: heapam_xlog.h:63
TransactionId snapshotConflictHorizon
Definition: heapam_xlog.h:445
#define VISIBILITYMAP_XLOG_CATALOG_REL
#define XLogHintBitIsNeeded()
Definition: xlog.h:120
#define REGBUF_NO_IMAGE
Definition: xloginsert.h:33

References Assert(), BufferIsValid(), xl_heap_visible::flags, REGBUF_NO_IMAGE, REGBUF_STANDARD, RelationIsAccessibleInLogicalDecoding, SizeOfHeapVisible, xl_heap_visible::snapshotConflictHorizon, VISIBILITYMAP_XLOG_CATALOG_REL, XLOG_HEAP2_VISIBLE, XLogBeginInsert(), XLogHintBitIsNeeded, XLogInsert(), XLogRegisterBuffer(), and XLogRegisterData().

Referenced by visibilitymap_set().

◆ MultiXactIdGetUpdateXid()

static TransactionId MultiXactIdGetUpdateXid ( TransactionId  xmax,
uint16  t_infomask 
)
static

Definition at line 7527 of file heapam.c.

7528{
7529 TransactionId update_xact = InvalidTransactionId;
7530 MultiXactMember *members;
7531 int nmembers;
7532
7533 Assert(!(t_infomask & HEAP_XMAX_LOCK_ONLY));
7534 Assert(t_infomask & HEAP_XMAX_IS_MULTI);
7535
7536 /*
7537 * Since we know the LOCK_ONLY bit is not set, this cannot be a multi from
7538 * pre-pg_upgrade.
7539 */
7540 nmembers = GetMultiXactIdMembers(xmax, &members, false, false);
7541
7542 if (nmembers > 0)
7543 {
7544 int i;
7545
7546 for (i = 0; i < nmembers; i++)
7547 {
7548 /* Ignore lockers */
7549 if (!ISUPDATE_from_mxstatus(members[i].status))
7550 continue;
7551
7552 /* there can be at most one updater */
7553 Assert(update_xact == InvalidTransactionId);
7554 update_xact = members[i].xid;
7555#ifndef USE_ASSERT_CHECKING
7556
7557 /*
7558 * in an assert-enabled build, walk the whole array to ensure
7559 * there's no other updater.
7560 */
7561 break;
7562#endif
7563 }
7564
7565 pfree(members);
7566 }
7567
7568 return update_xact;
7569}

References Assert(), GetMultiXactIdMembers(), HEAP_XMAX_IS_MULTI, HEAP_XMAX_LOCK_ONLY, i, InvalidTransactionId, ISUPDATE_from_mxstatus, pfree(), and MultiXactMember::xid.

Referenced by compute_new_xmax_infomask(), FreezeMultiXactId(), and HeapTupleGetUpdateXid().

◆ MultiXactIdWait()

static void MultiXactIdWait ( MultiXactId  multi,
MultiXactStatus  status,
uint16  infomask,
Relation  rel,
ItemPointer  ctid,
XLTW_Oper  oper,
int *  remaining 
)
static

Definition at line 7773 of file heapam.c.

7776{
7777 (void) Do_MultiXactIdWait(multi, status, infomask, false,
7778 rel, ctid, oper, remaining, false);
7779}

References Do_MultiXactIdWait(), oper(), and remaining.

Referenced by heap_delete(), heap_inplace_lock(), heap_lock_tuple(), and heap_update().

◆ page_collect_tuples()

static pg_attribute_always_inline int page_collect_tuples ( HeapScanDesc  scan,
Snapshot  snapshot,
Page  page,
Buffer  buffer,
BlockNumber  block,
int  lines,
bool  all_visible,
bool  check_serializable 
)
static

Definition at line 502 of file heapam.c.

506{
507 int ntup = 0;
508 OffsetNumber lineoff;
509
510 for (lineoff = FirstOffsetNumber; lineoff <= lines; lineoff++)
511 {
512 ItemId lpp = PageGetItemId(page, lineoff);
513 HeapTupleData loctup;
514 bool valid;
515
516 if (!ItemIdIsNormal(lpp))
517 continue;
518
519 loctup.t_data = (HeapTupleHeader) PageGetItem(page, lpp);
520 loctup.t_len = ItemIdGetLength(lpp);
522 ItemPointerSet(&(loctup.t_self), block, lineoff);
523
524 if (all_visible)
525 valid = true;
526 else
527 valid = HeapTupleSatisfiesVisibility(&loctup, snapshot, buffer);
528
529 if (check_serializable)
531 &loctup, buffer, snapshot);
532
533 if (valid)
534 {
535 scan->rs_vistuples[ntup] = lineoff;
536 ntup++;
537 }
538 }
539
541
542 return ntup;
543}
#define MaxHeapTuplesPerPage
Definition: htup_details.h:624

References Assert(), FirstOffsetNumber, HeapCheckForSerializableConflictOut(), HeapTupleSatisfiesVisibility(), ItemIdGetLength, ItemIdIsNormal, ItemPointerSet(), MaxHeapTuplesPerPage, PageGetItem(), PageGetItemId(), RelationGetRelid, HeapScanDescData::rs_base, TableScanDescData::rs_rd, HeapScanDescData::rs_vistuples, HeapTupleData::t_data, HeapTupleData::t_len, HeapTupleData::t_self, and HeapTupleData::t_tableOid.

Referenced by heap_prepare_pagescan().

◆ ReleaseBulkInsertStatePin()

void ReleaseBulkInsertStatePin ( BulkInsertState  bistate)

Definition at line 2050 of file heapam.c.

2051{
2052 if (bistate->current_buf != InvalidBuffer)
2053 ReleaseBuffer(bistate->current_buf);
2054 bistate->current_buf = InvalidBuffer;
2055
2056 /*
2057 * Despite the name, we also reset bulk relation extension state.
2058 * Otherwise we can end up erroring out due to looking for free space in
2059 * ->next_free of one partition, even though ->next_free was set when
2060 * extending another partition. It could obviously also be bad for
2061 * efficiency to look at existing blocks at offsets from another
2062 * partition, even if we don't error out.
2063 */
2064 bistate->next_free = InvalidBlockNumber;
2065 bistate->last_free = InvalidBlockNumber;
2066}

References BulkInsertStateData::current_buf, InvalidBlockNumber, InvalidBuffer, BulkInsertStateData::last_free, BulkInsertStateData::next_free, and ReleaseBuffer().

Referenced by CopyFrom().

◆ simple_heap_delete()

void simple_heap_delete ( Relation  relation,
ItemPointer  tid 
)

Definition at line 3201 of file heapam.c.

3202{
3203 TM_Result result;
3204 TM_FailureData tmfd;
3205
3206 result = heap_delete(relation, tid,
3208 true /* wait for commit */ ,
3209 &tmfd, false /* changingPart */ );
3210 switch (result)
3211 {
3212 case TM_SelfModified:
3213 /* Tuple was already updated in current command? */
3214 elog(ERROR, "tuple already updated by self");
3215 break;
3216
3217 case TM_Ok:
3218 /* done successfully */
3219 break;
3220
3221 case TM_Updated:
3222 elog(ERROR, "tuple concurrently updated");
3223 break;
3224
3225 case TM_Deleted:
3226 elog(ERROR, "tuple concurrently deleted");
3227 break;
3228
3229 default:
3230 elog(ERROR, "unrecognized heap_delete status: %u", result);
3231 break;
3232 }
3233}
TM_Result heap_delete(Relation relation, ItemPointer tid, CommandId cid, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, bool changingPart)
Definition: heapam.c:2778

References elog, ERROR, GetCurrentCommandId(), heap_delete(), InvalidSnapshot, TM_Deleted, TM_Ok, TM_SelfModified, and TM_Updated.

Referenced by CatalogTupleDelete(), and toast_delete_datum().

◆ simple_heap_insert()

void simple_heap_insert ( Relation  relation,
HeapTuple  tup 
)

Definition at line 2720 of file heapam.c.

2721{
2722 heap_insert(relation, tup, GetCurrentCommandId(true), 0, NULL);
2723}
void heap_insert(Relation relation, HeapTuple tup, CommandId cid, int options, BulkInsertState bistate)
Definition: heapam.c:2088

References GetCurrentCommandId(), and heap_insert().

Referenced by CatalogTupleInsert(), CatalogTupleInsertWithInfo(), and InsertOneTuple().

◆ simple_heap_update()

void simple_heap_update ( Relation  relation,
ItemPointer  otid,
HeapTuple  tup,
TU_UpdateIndexes update_indexes 
)

Definition at line 4491 of file heapam.c.

4493{
4494 TM_Result result;
4495 TM_FailureData tmfd;
4496 LockTupleMode lockmode;
4497
4498 result = heap_update(relation, otid, tup,
4500 true /* wait for commit */ ,
4501 &tmfd, &lockmode, update_indexes);
4502 switch (result)
4503 {
4504 case TM_SelfModified:
4505 /* Tuple was already updated in current command? */
4506 elog(ERROR, "tuple already updated by self");
4507 break;
4508
4509 case TM_Ok:
4510 /* done successfully */
4511 break;
4512
4513 case TM_Updated:
4514 elog(ERROR, "tuple concurrently updated");
4515 break;
4516
4517 case TM_Deleted:
4518 elog(ERROR, "tuple concurrently deleted");
4519 break;
4520
4521 default:
4522 elog(ERROR, "unrecognized heap_update status: %u", result);
4523 break;
4524 }
4525}
TM_Result heap_update(Relation relation, ItemPointer otid, HeapTuple newtup, CommandId cid, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, LockTupleMode *lockmode, TU_UpdateIndexes *update_indexes)
Definition: heapam.c:3247

References elog, ERROR, GetCurrentCommandId(), heap_update(), InvalidSnapshot, TM_Deleted, TM_Ok, TM_SelfModified, and TM_Updated.

Referenced by CatalogTupleUpdate(), and CatalogTupleUpdateWithInfo().

◆ test_lockmode_for_conflict()

static TM_Result test_lockmode_for_conflict ( MultiXactStatus  status,
TransactionId  xid,
LockTupleMode  mode,
HeapTuple  tup,
bool *  needwait 
)
static

Definition at line 5607 of file heapam.c.

5610{
5611 MultiXactStatus wantedstatus;
5612
5613 *needwait = false;
5614 wantedstatus = get_mxact_status_for_lock(mode, false);
5615
5616 /*
5617 * Note: we *must* check TransactionIdIsInProgress before
5618 * TransactionIdDidAbort/Commit; see comment at top of heapam_visibility.c
5619 * for an explanation.
5620 */
5622 {
5623 /*
5624 * The tuple has already been locked by our own transaction. This is
5625 * very rare but can happen if multiple transactions are trying to
5626 * lock an ancient version of the same tuple.
5627 */
5628 return TM_SelfModified;
5629 }
5630 else if (TransactionIdIsInProgress(xid))
5631 {
5632 /*
5633 * If the locking transaction is running, what we do depends on
5634 * whether the lock modes conflict: if they do, then we must wait for
5635 * it to finish; otherwise we can fall through to lock this tuple
5636 * version without waiting.
5637 */
5639 LOCKMODE_from_mxstatus(wantedstatus)))
5640 {
5641 *needwait = true;
5642 }
5643
5644 /*
5645 * If we set needwait above, then this value doesn't matter;
5646 * otherwise, this value signals to caller that it's okay to proceed.
5647 */
5648 return TM_Ok;
5649 }
5650 else if (TransactionIdDidAbort(xid))
5651 return TM_Ok;
5652 else if (TransactionIdDidCommit(xid))
5653 {
5654 /*
5655 * The other transaction committed. If it was only a locker, then the
5656 * lock is completely gone now and we can return success; but if it
5657 * was an update, then what we do depends on whether the two lock
5658 * modes conflict. If they conflict, then we must report error to
5659 * caller. But if they don't, we can fall through to allow the current
5660 * transaction to lock the tuple.
5661 *
5662 * Note: the reason we worry about ISUPDATE here is because as soon as
5663 * a transaction ends, all its locks are gone and meaningless, and
5664 * thus we can ignore them; whereas its updates persist. In the
5665 * TransactionIdIsInProgress case, above, we don't need to check
5666 * because we know the lock is still "alive" and thus a conflict needs
5667 * always be checked.
5668 */
5669 if (!ISUPDATE_from_mxstatus(status))
5670 return TM_Ok;
5671
5673 LOCKMODE_from_mxstatus(wantedstatus)))
5674 {
5675 /* bummer */
5676 if (!ItemPointerEquals(&tup->t_self, &tup->t_data->t_ctid))
5677 return TM_Updated;
5678 else
5679 return TM_Deleted;
5680 }
5681
5682 return TM_Ok;
5683 }
5684
5685 /* Not in progress, not aborted, not committed -- must have crashed */
5686 return TM_Ok;
5687}

References DoLockModesConflict(), get_mxact_status_for_lock(), ISUPDATE_from_mxstatus, ItemPointerEquals(), LOCKMODE_from_mxstatus, mode, HeapTupleHeaderData::t_ctid, HeapTupleData::t_data, HeapTupleData::t_self, TM_Deleted, TM_Ok, TM_SelfModified, TM_Updated, TransactionIdDidAbort(), TransactionIdDidCommit(), TransactionIdIsCurrentTransactionId(), and TransactionIdIsInProgress().

Referenced by heap_lock_updated_tuple_rec().

◆ UpdateXmaxHintBits()

static void UpdateXmaxHintBits ( HeapTupleHeader  tuple,
Buffer  buffer,
TransactionId  xid 
)
static

Definition at line 1999 of file heapam.c.

2000{
2003
2005 {
2006 if (!HEAP_XMAX_IS_LOCKED_ONLY(tuple->t_infomask) &&
2009 xid);
2010 else
2013 }
2014}
void HeapTupleSetHintBits(HeapTupleHeader tuple, Buffer buffer, uint16 infomask, TransactionId xid)

References Assert(), HEAP_XMAX_COMMITTED, HEAP_XMAX_INVALID, HEAP_XMAX_IS_LOCKED_ONLY(), HEAP_XMAX_IS_MULTI, HeapTupleHeaderGetRawXmax(), HeapTupleSetHintBits(), InvalidTransactionId, HeapTupleHeaderData::t_infomask, TransactionIdDidCommit(), and TransactionIdEquals.

Referenced by heap_delete(), heap_lock_tuple(), and heap_update().

◆ xmax_infomask_changed()

static bool xmax_infomask_changed ( uint16  new_infomask,
uint16  old_infomask 
)
inlinestatic

Definition at line 2755 of file heapam.c.

2756{
2757 const uint16 interesting =
2759
2760 if ((new_infomask & interesting) != (old_infomask & interesting))
2761 return true;
2762
2763 return false;
2764}
#define HEAP_LOCK_MASK
Definition: htup_details.h:202

References HEAP_LOCK_MASK, HEAP_XMAX_IS_MULTI, and HEAP_XMAX_LOCK_ONLY.

Referenced by heap_delete(), heap_lock_tuple(), and heap_update().

Variable Documentation

◆ hwlock

LOCKMODE hwlock

Definition at line 124 of file heapam.c.

◆ lockstatus

int lockstatus

Definition at line 125 of file heapam.c.

◆ MultiXactStatusLock

const int MultiXactStatusLock[MaxMultiXactStatus+1]
static

◆ 

const struct { ... } tupleLockExtraInfo[MaxLockTupleMode + 1]

◆ updstatus

int updstatus

Definition at line 126 of file heapam.c.