PostgreSQL Source Code  git master
tableam.h File Reference
#include "access/relscan.h"
#include "access/sdir.h"
#include "access/xact.h"
#include "executor/tuptable.h"
#include "utils/rel.h"
#include "utils/snapshot.h"
Include dependency graph for tableam.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  TM_FailureData
 
struct  TM_IndexDelete
 
struct  TM_IndexStatus
 
struct  TM_IndexDeleteOp
 
struct  TableAmRoutine
 

Macros

#define DEFAULT_TABLE_ACCESS_METHOD   "heap"
 
#define TABLE_INSERT_SKIP_FSM   0x0002
 
#define TABLE_INSERT_FROZEN   0x0004
 
#define TABLE_INSERT_NO_LOGICAL   0x0008
 
#define TUPLE_LOCK_FLAG_LOCK_UPDATE_IN_PROGRESS   (1 << 0)
 
#define TUPLE_LOCK_FLAG_FIND_LAST_VERSION   (1 << 1)
 

Typedefs

typedef enum ScanOptions ScanOptions
 
typedef enum TM_Result TM_Result
 
typedef enum TU_UpdateIndexes TU_UpdateIndexes
 
typedef struct TM_FailureData TM_FailureData
 
typedef struct TM_IndexDelete TM_IndexDelete
 
typedef struct TM_IndexStatus TM_IndexStatus
 
typedef struct TM_IndexDeleteOp TM_IndexDeleteOp
 
typedef void(* IndexBuildCallback) (Relation index, ItemPointer tid, Datum *values, bool *isnull, bool tupleIsAlive, void *state)
 
typedef struct TableAmRoutine TableAmRoutine
 

Enumerations

enum  ScanOptions {
  SO_TYPE_SEQSCAN = 1 << 0 , SO_TYPE_BITMAPSCAN = 1 << 1 , SO_TYPE_SAMPLESCAN = 1 << 2 , SO_TYPE_TIDSCAN = 1 << 3 ,
  SO_TYPE_TIDRANGESCAN = 1 << 4 , SO_TYPE_ANALYZE = 1 << 5 , SO_ALLOW_STRAT = 1 << 6 , SO_ALLOW_SYNC = 1 << 7 ,
  SO_ALLOW_PAGEMODE = 1 << 8 , SO_TEMP_SNAPSHOT = 1 << 9
}
 
enum  TM_Result {
  TM_Ok , TM_Invisible , TM_SelfModified , TM_Updated ,
  TM_Deleted , TM_BeingModified , TM_WouldBlock
}
 
enum  TU_UpdateIndexes { TU_None , TU_All , TU_Summarizing }
 

Functions

const TupleTableSlotOpstable_slot_callbacks (Relation relation)
 
TupleTableSlottable_slot_create (Relation relation, List **reglist)
 
static TableScanDesc table_beginscan (Relation rel, Snapshot snapshot, int nkeys, struct ScanKeyData *key)
 
TableScanDesc table_beginscan_catalog (Relation relation, int nkeys, struct ScanKeyData *key)
 
static TableScanDesc table_beginscan_strat (Relation rel, Snapshot snapshot, int nkeys, struct ScanKeyData *key, bool allow_strat, bool allow_sync)
 
static TableScanDesc table_beginscan_bm (Relation rel, Snapshot snapshot, int nkeys, struct ScanKeyData *key)
 
static TableScanDesc table_beginscan_sampling (Relation rel, Snapshot snapshot, int nkeys, struct ScanKeyData *key, bool allow_strat, bool allow_sync, bool allow_pagemode)
 
static TableScanDesc table_beginscan_tid (Relation rel, Snapshot snapshot)
 
static TableScanDesc table_beginscan_analyze (Relation rel)
 
static void table_endscan (TableScanDesc scan)
 
static void table_rescan (TableScanDesc scan, struct ScanKeyData *key)
 
static void table_rescan_set_params (TableScanDesc scan, struct ScanKeyData *key, bool allow_strat, bool allow_sync, bool allow_pagemode)
 
void table_scan_update_snapshot (TableScanDesc scan, Snapshot snapshot)
 
static bool table_scan_getnextslot (TableScanDesc sscan, ScanDirection direction, TupleTableSlot *slot)
 
static TableScanDesc table_beginscan_tidrange (Relation rel, Snapshot snapshot, ItemPointer mintid, ItemPointer maxtid)
 
static void table_rescan_tidrange (TableScanDesc sscan, ItemPointer mintid, ItemPointer maxtid)
 
static bool table_scan_getnextslot_tidrange (TableScanDesc sscan, ScanDirection direction, TupleTableSlot *slot)
 
Size table_parallelscan_estimate (Relation rel, Snapshot snapshot)
 
void table_parallelscan_initialize (Relation rel, ParallelTableScanDesc pscan, Snapshot snapshot)
 
TableScanDesc table_beginscan_parallel (Relation relation, ParallelTableScanDesc pscan)
 
static void table_parallelscan_reinitialize (Relation rel, ParallelTableScanDesc pscan)
 
static IndexFetchTableDatatable_index_fetch_begin (Relation rel)
 
static void table_index_fetch_reset (struct IndexFetchTableData *scan)
 
static void table_index_fetch_end (struct IndexFetchTableData *scan)
 
static bool table_index_fetch_tuple (struct IndexFetchTableData *scan, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot, bool *call_again, bool *all_dead)
 
bool table_index_fetch_tuple_check (Relation rel, ItemPointer tid, Snapshot snapshot, bool *all_dead)
 
static bool table_tuple_fetch_row_version (Relation rel, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot)
 
static bool table_tuple_tid_valid (TableScanDesc scan, ItemPointer tid)
 
void table_tuple_get_latest_tid (TableScanDesc scan, ItemPointer tid)
 
static bool table_tuple_satisfies_snapshot (Relation rel, TupleTableSlot *slot, Snapshot snapshot)
 
static TransactionId table_index_delete_tuples (Relation rel, TM_IndexDeleteOp *delstate)
 
static void table_tuple_insert (Relation rel, TupleTableSlot *slot, CommandId cid, int options, struct BulkInsertStateData *bistate)
 
static void table_tuple_insert_speculative (Relation rel, TupleTableSlot *slot, CommandId cid, int options, struct BulkInsertStateData *bistate, uint32 specToken)
 
static void table_tuple_complete_speculative (Relation rel, TupleTableSlot *slot, uint32 specToken, bool succeeded)
 
static void table_multi_insert (Relation rel, TupleTableSlot **slots, int nslots, CommandId cid, int options, struct BulkInsertStateData *bistate)
 
static TM_Result table_tuple_delete (Relation rel, ItemPointer tid, CommandId cid, Snapshot snapshot, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, bool changingPart)
 
static TM_Result table_tuple_update (Relation rel, ItemPointer otid, TupleTableSlot *slot, CommandId cid, Snapshot snapshot, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, LockTupleMode *lockmode, TU_UpdateIndexes *update_indexes)
 
static TM_Result table_tuple_lock (Relation rel, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot, CommandId cid, LockTupleMode mode, LockWaitPolicy wait_policy, uint8 flags, TM_FailureData *tmfd)
 
static void table_finish_bulk_insert (Relation rel, int options)
 
static void table_relation_set_new_filelocator (Relation rel, const RelFileLocator *newrlocator, char persistence, TransactionId *freezeXid, MultiXactId *minmulti)
 
static void table_relation_nontransactional_truncate (Relation rel)
 
static void table_relation_copy_data (Relation rel, const RelFileLocator *newrlocator)
 
static void table_relation_copy_for_cluster (Relation OldTable, Relation NewTable, Relation OldIndex, bool use_sort, TransactionId OldestXmin, TransactionId *xid_cutoff, MultiXactId *multi_cutoff, double *num_tuples, double *tups_vacuumed, double *tups_recently_dead)
 
static void table_relation_vacuum (Relation rel, struct VacuumParams *params, BufferAccessStrategy bstrategy)
 
static bool table_scan_analyze_next_block (TableScanDesc scan, BlockNumber blockno, BufferAccessStrategy bstrategy)
 
static bool table_scan_analyze_next_tuple (TableScanDesc scan, TransactionId OldestXmin, double *liverows, double *deadrows, TupleTableSlot *slot)
 
static double table_index_build_scan (Relation table_rel, Relation index_rel, struct IndexInfo *index_info, bool allow_sync, bool progress, IndexBuildCallback callback, void *callback_state, TableScanDesc scan)
 
static double table_index_build_range_scan (Relation table_rel, Relation index_rel, struct IndexInfo *index_info, bool allow_sync, bool anyvisible, bool progress, BlockNumber start_blockno, BlockNumber numblocks, IndexBuildCallback callback, void *callback_state, TableScanDesc scan)
 
static void table_index_validate_scan (Relation table_rel, Relation index_rel, struct IndexInfo *index_info, Snapshot snapshot, struct ValidateIndexState *state)
 
static uint64 table_relation_size (Relation rel, ForkNumber forkNumber)
 
static bool table_relation_needs_toast_table (Relation rel)
 
static Oid table_relation_toast_am (Relation rel)
 
static void table_relation_fetch_toast_slice (Relation toastrel, Oid valueid, int32 attrsize, int32 sliceoffset, int32 slicelength, struct varlena *result)
 
static void table_relation_estimate_size (Relation rel, int32 *attr_widths, BlockNumber *pages, double *tuples, double *allvisfrac)
 
static bool table_scan_bitmap_next_block (TableScanDesc scan, struct TBMIterateResult *tbmres)
 
static bool table_scan_bitmap_next_tuple (TableScanDesc scan, struct TBMIterateResult *tbmres, TupleTableSlot *slot)
 
static bool table_scan_sample_next_block (TableScanDesc scan, struct SampleScanState *scanstate)
 
static bool table_scan_sample_next_tuple (TableScanDesc scan, struct SampleScanState *scanstate, TupleTableSlot *slot)
 
void simple_table_tuple_insert (Relation rel, TupleTableSlot *slot)
 
void simple_table_tuple_delete (Relation rel, ItemPointer tid, Snapshot snapshot)
 
void simple_table_tuple_update (Relation rel, ItemPointer otid, TupleTableSlot *slot, Snapshot snapshot, TU_UpdateIndexes *update_indexes)
 
Size table_block_parallelscan_estimate (Relation rel)
 
Size table_block_parallelscan_initialize (Relation rel, ParallelTableScanDesc pscan)
 
void table_block_parallelscan_reinitialize (Relation rel, ParallelTableScanDesc pscan)
 
BlockNumber table_block_parallelscan_nextpage (Relation rel, ParallelBlockTableScanWorker pbscanwork, ParallelBlockTableScanDesc pbscan)
 
void table_block_parallelscan_startblock_init (Relation rel, ParallelBlockTableScanWorker pbscanwork, ParallelBlockTableScanDesc pbscan)
 
uint64 table_block_relation_size (Relation rel, ForkNumber forkNumber)
 
void table_block_relation_estimate_size (Relation rel, int32 *attr_widths, BlockNumber *pages, double *tuples, double *allvisfrac, Size overhead_bytes_per_tuple, Size usable_bytes_per_page)
 
const TableAmRoutineGetTableAmRoutine (Oid amhandler)
 
const TableAmRoutineGetHeapamTableAmRoutine (void)
 

Variables

PGDLLIMPORT char * default_table_access_method
 
PGDLLIMPORT bool synchronize_seqscans
 

Macro Definition Documentation

◆ DEFAULT_TABLE_ACCESS_METHOD

#define DEFAULT_TABLE_ACCESS_METHOD   "heap"

Definition at line 28 of file tableam.h.

◆ TABLE_INSERT_FROZEN

#define TABLE_INSERT_FROZEN   0x0004

Definition at line 253 of file tableam.h.

◆ TABLE_INSERT_NO_LOGICAL

#define TABLE_INSERT_NO_LOGICAL   0x0008

Definition at line 254 of file tableam.h.

◆ TABLE_INSERT_SKIP_FSM

#define TABLE_INSERT_SKIP_FSM   0x0002

Definition at line 252 of file tableam.h.

◆ TUPLE_LOCK_FLAG_FIND_LAST_VERSION

#define TUPLE_LOCK_FLAG_FIND_LAST_VERSION   (1 << 1)

Definition at line 260 of file tableam.h.

◆ TUPLE_LOCK_FLAG_LOCK_UPDATE_IN_PROGRESS

#define TUPLE_LOCK_FLAG_LOCK_UPDATE_IN_PROGRESS   (1 << 0)

Definition at line 258 of file tableam.h.

Typedef Documentation

◆ IndexBuildCallback

typedef void(* IndexBuildCallback) (Relation index, ItemPointer tid, Datum *values, bool *isnull, bool tupleIsAlive, void *state)

Definition at line 264 of file tableam.h.

◆ ScanOptions

typedef enum ScanOptions ScanOptions

◆ TableAmRoutine

◆ TM_FailureData

◆ TM_IndexDelete

◆ TM_IndexDeleteOp

◆ TM_IndexStatus

◆ TM_Result

typedef enum TM_Result TM_Result

◆ TU_UpdateIndexes

Enumeration Type Documentation

◆ ScanOptions

Enumerator
SO_TYPE_SEQSCAN 
SO_TYPE_BITMAPSCAN 
SO_TYPE_SAMPLESCAN 
SO_TYPE_TIDSCAN 
SO_TYPE_TIDRANGESCAN 
SO_TYPE_ANALYZE 
SO_ALLOW_STRAT 
SO_ALLOW_SYNC 
SO_ALLOW_PAGEMODE 
SO_TEMP_SNAPSHOT 

Definition at line 45 of file tableam.h.

46 {
47  /* one of SO_TYPE_* may be specified */
48  SO_TYPE_SEQSCAN = 1 << 0,
49  SO_TYPE_BITMAPSCAN = 1 << 1,
50  SO_TYPE_SAMPLESCAN = 1 << 2,
51  SO_TYPE_TIDSCAN = 1 << 3,
52  SO_TYPE_TIDRANGESCAN = 1 << 4,
53  SO_TYPE_ANALYZE = 1 << 5,
54 
55  /* several of SO_ALLOW_* may be specified */
56  /* allow or disallow use of access strategy */
57  SO_ALLOW_STRAT = 1 << 6,
58  /* report location to syncscan logic? */
59  SO_ALLOW_SYNC = 1 << 7,
60  /* verify visibility page-at-a-time? */
61  SO_ALLOW_PAGEMODE = 1 << 8,
62 
63  /* unregister snapshot at scan end? */
64  SO_TEMP_SNAPSHOT = 1 << 9,
65 } ScanOptions;
ScanOptions
Definition: tableam.h:46
@ SO_ALLOW_STRAT
Definition: tableam.h:57
@ SO_TYPE_TIDRANGESCAN
Definition: tableam.h:52
@ SO_TYPE_ANALYZE
Definition: tableam.h:53
@ SO_TEMP_SNAPSHOT
Definition: tableam.h:64
@ SO_TYPE_TIDSCAN
Definition: tableam.h:51
@ SO_ALLOW_PAGEMODE
Definition: tableam.h:61
@ SO_TYPE_SAMPLESCAN
Definition: tableam.h:50
@ SO_ALLOW_SYNC
Definition: tableam.h:59
@ SO_TYPE_SEQSCAN
Definition: tableam.h:48
@ SO_TYPE_BITMAPSCAN
Definition: tableam.h:49

◆ TM_Result

enum TM_Result
Enumerator
TM_Ok 
TM_Invisible 
TM_SelfModified 
TM_Updated 
TM_Deleted 
TM_BeingModified 
TM_WouldBlock 

Definition at line 71 of file tableam.h.

72 {
73  /*
74  * Signals that the action succeeded (i.e. update/delete performed, lock
75  * was acquired)
76  */
77  TM_Ok,
78 
79  /* The affected tuple wasn't visible to the relevant snapshot */
81 
82  /* The affected tuple was already modified by the calling backend */
84 
85  /*
86  * The affected tuple was updated by another transaction. This includes
87  * the case where tuple was moved to another partition.
88  */
89  TM_Updated,
90 
91  /* The affected tuple was deleted by another transaction */
92  TM_Deleted,
93 
94  /*
95  * The affected tuple is currently being modified by another session. This
96  * will only be returned if table_(update/delete/lock_tuple) are
97  * instructed not to wait.
98  */
100 
101  /* lock couldn't be acquired, action skipped. Only used by lock_tuple */
103 } TM_Result;
TM_Result
Definition: tableam.h:72
@ TM_Ok
Definition: tableam.h:77
@ TM_BeingModified
Definition: tableam.h:99
@ TM_Deleted
Definition: tableam.h:92
@ TM_WouldBlock
Definition: tableam.h:102
@ TM_Updated
Definition: tableam.h:89
@ TM_SelfModified
Definition: tableam.h:83
@ TM_Invisible
Definition: tableam.h:80

◆ TU_UpdateIndexes

Enumerator
TU_None 
TU_All 
TU_Summarizing 

Definition at line 109 of file tableam.h.

110 {
111  /* No indexed columns were updated (incl. TID addressing of tuple) */
112  TU_None,
113 
114  /* A non-summarizing indexed column was updated, or the TID has changed */
115  TU_All,
116 
117  /* Only summarized columns were updated, TID is unchanged */
TU_UpdateIndexes
Definition: tableam.h:110
@ TU_Summarizing
Definition: tableam.h:118
@ TU_All
Definition: tableam.h:115
@ TU_None
Definition: tableam.h:112

Function Documentation

◆ GetHeapamTableAmRoutine()

const TableAmRoutine* GetHeapamTableAmRoutine ( void  )

Definition at line 2602 of file heapam_handler.c.

2603 {
2604  return &heapam_methods;
2605 }
static const TableAmRoutine heapam_methods

References heapam_methods.

Referenced by formrdesc(), and heap_getnext().

◆ GetTableAmRoutine()

const TableAmRoutine* GetTableAmRoutine ( Oid  amhandler)

Definition at line 35 of file tableamapi.c.

36 {
37  Datum datum;
38  const TableAmRoutine *routine;
39 
40  datum = OidFunctionCall0(amhandler);
41  routine = (TableAmRoutine *) DatumGetPointer(datum);
42 
43  if (routine == NULL || !IsA(routine, TableAmRoutine))
44  elog(ERROR, "table access method handler %u did not return a TableAmRoutine struct",
45  amhandler);
46 
47  /*
48  * Assert that all required callbacks are present. That makes it a bit
49  * easier to keep AMs up to date, e.g. when forward porting them to a new
50  * major version.
51  */
52  Assert(routine->scan_begin != NULL);
53  Assert(routine->scan_end != NULL);
54  Assert(routine->scan_rescan != NULL);
55  Assert(routine->scan_getnextslot != NULL);
56 
57  Assert(routine->parallelscan_estimate != NULL);
58  Assert(routine->parallelscan_initialize != NULL);
59  Assert(routine->parallelscan_reinitialize != NULL);
60 
61  Assert(routine->index_fetch_begin != NULL);
62  Assert(routine->index_fetch_reset != NULL);
63  Assert(routine->index_fetch_end != NULL);
64  Assert(routine->index_fetch_tuple != NULL);
65 
66  Assert(routine->tuple_fetch_row_version != NULL);
67  Assert(routine->tuple_tid_valid != NULL);
68  Assert(routine->tuple_get_latest_tid != NULL);
69  Assert(routine->tuple_satisfies_snapshot != NULL);
70  Assert(routine->index_delete_tuples != NULL);
71 
72  Assert(routine->tuple_insert != NULL);
73 
74  /*
75  * Could be made optional, but would require throwing error during
76  * parse-analysis.
77  */
78  Assert(routine->tuple_insert_speculative != NULL);
79  Assert(routine->tuple_complete_speculative != NULL);
80 
81  Assert(routine->multi_insert != NULL);
82  Assert(routine->tuple_delete != NULL);
83  Assert(routine->tuple_update != NULL);
84  Assert(routine->tuple_lock != NULL);
85 
86  Assert(routine->relation_set_new_filelocator != NULL);
88  Assert(routine->relation_copy_data != NULL);
89  Assert(routine->relation_copy_for_cluster != NULL);
90  Assert(routine->relation_vacuum != NULL);
91  Assert(routine->scan_analyze_next_block != NULL);
92  Assert(routine->scan_analyze_next_tuple != NULL);
93  Assert(routine->index_build_range_scan != NULL);
94  Assert(routine->index_validate_scan != NULL);
95 
96  Assert(routine->relation_size != NULL);
97  Assert(routine->relation_needs_toast_table != NULL);
98 
99  Assert(routine->relation_estimate_size != NULL);
100 
101  /* optional, but one callback implies presence of the other */
102  Assert((routine->scan_bitmap_next_block == NULL) ==
103  (routine->scan_bitmap_next_tuple == NULL));
104  Assert(routine->scan_sample_next_block != NULL);
105  Assert(routine->scan_sample_next_tuple != NULL);
106 
107  return routine;
108 }
#define ERROR
Definition: elog.h:39
#define OidFunctionCall0(functionId)
Definition: fmgr.h:678
Assert(fmt[strlen(fmt) - 1] !='\n')
#define IsA(nodeptr, _type_)
Definition: nodes.h:179
uintptr_t Datum
Definition: postgres.h:64
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
Size(* parallelscan_initialize)(Relation rel, ParallelTableScanDesc pscan)
Definition: tableam.h:392
void(* relation_copy_data)(Relation rel, const RelFileLocator *newrlocator)
Definition: tableam.h:616
bool(* scan_sample_next_tuple)(TableScanDesc scan, struct SampleScanState *scanstate, TupleTableSlot *slot)
Definition: tableam.h:865
void(* index_fetch_reset)(struct IndexFetchTableData *data)
Definition: tableam.h:422
void(* tuple_complete_speculative)(Relation rel, TupleTableSlot *slot, uint32 specToken, bool succeeded)
Definition: tableam.h:516
bool(* scan_bitmap_next_tuple)(TableScanDesc scan, struct TBMIterateResult *tbmres, TupleTableSlot *slot)
Definition: tableam.h:820
void(* parallelscan_reinitialize)(Relation rel, ParallelTableScanDesc pscan)
Definition: tableam.h:399
void(* tuple_get_latest_tid)(TableScanDesc scan, ItemPointer tid)
Definition: tableam.h:481
struct IndexFetchTableData *(* index_fetch_begin)(Relation rel)
Definition: tableam.h:416
bool(* scan_analyze_next_block)(TableScanDesc scan, BlockNumber blockno, BufferAccessStrategy bstrategy)
Definition: tableam.h:667
void(* relation_estimate_size)(Relation rel, int32 *attr_widths, BlockNumber *pages, double *tuples, double *allvisfrac)
Definition: tableam.h:765
double(* index_build_range_scan)(Relation table_rel, Relation index_rel, struct IndexInfo *index_info, bool allow_sync, bool anyvisible, bool progress, BlockNumber start_blockno, BlockNumber numblocks, IndexBuildCallback callback, void *callback_state, TableScanDesc scan)
Definition: tableam.h:686
TableScanDesc(* scan_begin)(Relation rel, Snapshot snapshot, int nkeys, struct ScanKeyData *key, ParallelTableScanDesc pscan, uint32 flags)
Definition: tableam.h:320
bool(* relation_needs_toast_table)(Relation rel)
Definition: tableam.h:729
bool(* tuple_tid_valid)(TableScanDesc scan, ItemPointer tid)
Definition: tableam.h:474
void(* multi_insert)(Relation rel, TupleTableSlot **slots, int nslots, CommandId cid, int options, struct BulkInsertStateData *bistate)
Definition: tableam.h:522
void(* scan_end)(TableScanDesc scan)
Definition: tableam.h:330
uint64(* relation_size)(Relation rel, ForkNumber forkNumber)
Definition: tableam.h:719
TM_Result(* tuple_lock)(Relation rel, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot, CommandId cid, LockTupleMode mode, LockWaitPolicy wait_policy, uint8 flags, TM_FailureData *tmfd)
Definition: tableam.h:548
bool(* scan_sample_next_block)(TableScanDesc scan, struct SampleScanState *scanstate)
Definition: tableam.h:849
void(* relation_copy_for_cluster)(Relation NewTable, Relation OldTable, Relation OldIndex, bool use_sort, TransactionId OldestXmin, TransactionId *xid_cutoff, MultiXactId *multi_cutoff, double *num_tuples, double *tups_vacuumed, double *tups_recently_dead)
Definition: tableam.h:620
void(* relation_nontransactional_truncate)(Relation rel)
Definition: tableam.h:608
TM_Result(* tuple_update)(Relation rel, ItemPointer otid, TupleTableSlot *slot, CommandId cid, Snapshot snapshot, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, LockTupleMode *lockmode, TU_UpdateIndexes *update_indexes)
Definition: tableam.h:536
void(* tuple_insert)(Relation rel, TupleTableSlot *slot, CommandId cid, int options, struct BulkInsertStateData *bistate)
Definition: tableam.h:503
void(* scan_rescan)(TableScanDesc scan, struct ScanKeyData *key, bool set_params, bool allow_strat, bool allow_sync, bool allow_pagemode)
Definition: tableam.h:336
bool(* tuple_fetch_row_version)(Relation rel, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot)
Definition: tableam.h:466
void(* relation_vacuum)(Relation rel, struct VacuumParams *params, BufferAccessStrategy bstrategy)
Definition: tableam.h:646
Size(* parallelscan_estimate)(Relation rel)
Definition: tableam.h:385
void(* relation_set_new_filelocator)(Relation rel, const RelFileLocator *newrlocator, char persistence, TransactionId *freezeXid, MultiXactId *minmulti)
Definition: tableam.h:594
bool(* scan_analyze_next_tuple)(TableScanDesc scan, TransactionId OldestXmin, double *liverows, double *deadrows, TupleTableSlot *slot)
Definition: tableam.h:679
TransactionId(* index_delete_tuples)(Relation rel, TM_IndexDeleteOp *delstate)
Definition: tableam.h:493
void(* index_fetch_end)(struct IndexFetchTableData *data)
Definition: tableam.h:427
bool(* index_fetch_tuple)(struct IndexFetchTableData *scan, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot, bool *call_again, bool *all_dead)
Definition: tableam.h:449
void(* tuple_insert_speculative)(Relation rel, TupleTableSlot *slot, CommandId cid, int options, struct BulkInsertStateData *bistate, uint32 specToken)
Definition: tableam.h:508
TM_Result(* tuple_delete)(Relation rel, ItemPointer tid, CommandId cid, Snapshot snapshot, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, bool changingPart)
Definition: tableam.h:526
bool(* scan_bitmap_next_block)(TableScanDesc scan, struct TBMIterateResult *tbmres)
Definition: tableam.h:806
void(* index_validate_scan)(Relation table_rel, Relation index_rel, struct IndexInfo *index_info, Snapshot snapshot, struct ValidateIndexState *state)
Definition: tableam.h:699
bool(* scan_getnextslot)(TableScanDesc scan, ScanDirection direction, TupleTableSlot *slot)
Definition: tableam.h:343
bool(* tuple_satisfies_snapshot)(Relation rel, TupleTableSlot *slot, Snapshot snapshot)
Definition: tableam.h:488

References Assert(), DatumGetPointer(), elog(), ERROR, TableAmRoutine::index_build_range_scan, TableAmRoutine::index_delete_tuples, TableAmRoutine::index_fetch_begin, TableAmRoutine::index_fetch_end, TableAmRoutine::index_fetch_reset, TableAmRoutine::index_fetch_tuple, TableAmRoutine::index_validate_scan, IsA, TableAmRoutine::multi_insert, OidFunctionCall0, TableAmRoutine::parallelscan_estimate, TableAmRoutine::parallelscan_initialize, TableAmRoutine::parallelscan_reinitialize, TableAmRoutine::relation_copy_data, TableAmRoutine::relation_copy_for_cluster, TableAmRoutine::relation_estimate_size, TableAmRoutine::relation_needs_toast_table, TableAmRoutine::relation_nontransactional_truncate, TableAmRoutine::relation_set_new_filelocator, TableAmRoutine::relation_size, TableAmRoutine::relation_vacuum, TableAmRoutine::scan_analyze_next_block, TableAmRoutine::scan_analyze_next_tuple, TableAmRoutine::scan_begin, TableAmRoutine::scan_bitmap_next_block, TableAmRoutine::scan_bitmap_next_tuple, TableAmRoutine::scan_end, TableAmRoutine::scan_getnextslot, TableAmRoutine::scan_rescan, TableAmRoutine::scan_sample_next_block, TableAmRoutine::scan_sample_next_tuple, TableAmRoutine::tuple_complete_speculative, TableAmRoutine::tuple_delete, TableAmRoutine::tuple_fetch_row_version, TableAmRoutine::tuple_get_latest_tid, TableAmRoutine::tuple_insert, TableAmRoutine::tuple_insert_speculative, TableAmRoutine::tuple_lock, TableAmRoutine::tuple_satisfies_snapshot, TableAmRoutine::tuple_tid_valid, and TableAmRoutine::tuple_update.

Referenced by InitTableAmRoutine().

◆ simple_table_tuple_delete()

void simple_table_tuple_delete ( Relation  rel,
ItemPointer  tid,
Snapshot  snapshot 
)

Definition at line 300 of file tableam.c.

301 {
302  TM_Result result;
303  TM_FailureData tmfd;
304 
305  result = table_tuple_delete(rel, tid,
306  GetCurrentCommandId(true),
307  snapshot, InvalidSnapshot,
308  true /* wait for commit */ ,
309  &tmfd, false /* changingPart */ );
310 
311  switch (result)
312  {
313  case TM_SelfModified:
314  /* Tuple was already updated in current command? */
315  elog(ERROR, "tuple already updated by self");
316  break;
317 
318  case TM_Ok:
319  /* done successfully */
320  break;
321 
322  case TM_Updated:
323  elog(ERROR, "tuple concurrently updated");
324  break;
325 
326  case TM_Deleted:
327  elog(ERROR, "tuple concurrently deleted");
328  break;
329 
330  default:
331  elog(ERROR, "unrecognized table_tuple_delete status: %u", result);
332  break;
333  }
334 }
#define InvalidSnapshot
Definition: snapshot.h:123
static TM_Result table_tuple_delete(Relation rel, ItemPointer tid, CommandId cid, Snapshot snapshot, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, bool changingPart)
Definition: tableam.h:1486
CommandId GetCurrentCommandId(bool used)
Definition: xact.c:818

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

Referenced by ExecSimpleRelationDelete().

◆ simple_table_tuple_insert()

void simple_table_tuple_insert ( Relation  rel,
TupleTableSlot slot 
)

Definition at line 286 of file tableam.c.

287 {
288  table_tuple_insert(rel, slot, GetCurrentCommandId(true), 0, NULL);
289 }
static void table_tuple_insert(Relation rel, TupleTableSlot *slot, CommandId cid, int options, struct BulkInsertStateData *bistate)
Definition: tableam.h:1397

References GetCurrentCommandId(), and table_tuple_insert().

Referenced by ExecSimpleRelationInsert().

◆ simple_table_tuple_update()

void simple_table_tuple_update ( Relation  rel,
ItemPointer  otid,
TupleTableSlot slot,
Snapshot  snapshot,
TU_UpdateIndexes update_indexes 
)

Definition at line 345 of file tableam.c.

349 {
350  TM_Result result;
351  TM_FailureData tmfd;
352  LockTupleMode lockmode;
353 
354  result = table_tuple_update(rel, otid, slot,
355  GetCurrentCommandId(true),
356  snapshot, InvalidSnapshot,
357  true /* wait for commit */ ,
358  &tmfd, &lockmode, update_indexes);
359 
360  switch (result)
361  {
362  case TM_SelfModified:
363  /* Tuple was already updated in current command? */
364  elog(ERROR, "tuple already updated by self");
365  break;
366 
367  case TM_Ok:
368  /* done successfully */
369  break;
370 
371  case TM_Updated:
372  elog(ERROR, "tuple concurrently updated");
373  break;
374 
375  case TM_Deleted:
376  elog(ERROR, "tuple concurrently deleted");
377  break;
378 
379  default:
380  elog(ERROR, "unrecognized table_tuple_update status: %u", result);
381  break;
382  }
383 }
LockTupleMode
Definition: lockoptions.h:50
static TM_Result table_tuple_update(Relation rel, ItemPointer otid, TupleTableSlot *slot, CommandId cid, Snapshot snapshot, Snapshot crosscheck, bool wait, TM_FailureData *tmfd, LockTupleMode *lockmode, TU_UpdateIndexes *update_indexes)
Definition: tableam.h:1530

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

Referenced by ExecSimpleRelationUpdate().

◆ table_beginscan()

static TableScanDesc table_beginscan ( Relation  rel,
Snapshot  snapshot,
int  nkeys,
struct ScanKeyData key 
)
inlinestatic

◆ table_beginscan_analyze()

static TableScanDesc table_beginscan_analyze ( Relation  rel)
inlinestatic

Definition at line 998 of file tableam.h.

999 {
1000  uint32 flags = SO_TYPE_ANALYZE;
1001 
1002  return rel->rd_tableam->scan_begin(rel, NULL, 0, NULL, NULL, flags);
1003 }

References RelationData::rd_tableam, TableAmRoutine::scan_begin, and SO_TYPE_ANALYZE.

Referenced by acquire_sample_rows().

◆ table_beginscan_bm()

static TableScanDesc table_beginscan_bm ( Relation  rel,
Snapshot  snapshot,
int  nkeys,
struct ScanKeyData key 
)
inlinestatic

Definition at line 946 of file tableam.h.

948 {
950 
951  return rel->rd_tableam->scan_begin(rel, snapshot, nkeys, key, NULL, flags);
952 }

References sort-test::key, RelationData::rd_tableam, TableAmRoutine::scan_begin, SO_ALLOW_PAGEMODE, and SO_TYPE_BITMAPSCAN.

Referenced by ExecInitBitmapHeapScan().

◆ table_beginscan_catalog()

TableScanDesc table_beginscan_catalog ( Relation  relation,
int  nkeys,
struct ScanKeyData key 
)

Definition at line 112 of file tableam.c.

113 {
114  uint32 flags = SO_TYPE_SEQSCAN |
116  Oid relid = RelationGetRelid(relation);
117  Snapshot snapshot = RegisterSnapshot(GetCatalogSnapshot(relid));
118 
119  return relation->rd_tableam->scan_begin(relation, snapshot, nkeys, key,
120  NULL, flags);
121 }
unsigned int Oid
Definition: postgres_ext.h:31
#define RelationGetRelid(relation)
Definition: rel.h:504
Snapshot GetCatalogSnapshot(Oid relid)
Definition: snapmgr.c:359
Snapshot RegisterSnapshot(Snapshot snapshot)
Definition: snapmgr.c:801

References GetCatalogSnapshot(), sort-test::key, RelationData::rd_tableam, RegisterSnapshot(), RelationGetRelid, TableAmRoutine::scan_begin, SO_ALLOW_PAGEMODE, SO_ALLOW_STRAT, SO_ALLOW_SYNC, SO_TEMP_SNAPSHOT, and SO_TYPE_SEQSCAN.

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(), index_update_stats(), objectsInSchemaToOids(), populate_typ_list(), ReindexMultipleTables(), remove_dbtablespaces(), RemoveSubscriptionRel(), RenameTableSpace(), ThereIsAtLeastOneRole(), and vac_truncate_clog().

◆ table_beginscan_parallel()

TableScanDesc table_beginscan_parallel ( Relation  relation,
ParallelTableScanDesc  pscan 
)

Definition at line 175 of file tableam.c.

176 {
177  Snapshot snapshot;
178  uint32 flags = SO_TYPE_SEQSCAN |
180 
181  Assert(RelationGetRelid(relation) == pscan->phs_relid);
182 
183  if (!pscan->phs_snapshot_any)
184  {
185  /* Snapshot was serialized -- restore it */
186  snapshot = RestoreSnapshot((char *) pscan + pscan->phs_snapshot_off);
187  RegisterSnapshot(snapshot);
188  flags |= SO_TEMP_SNAPSHOT;
189  }
190  else
191  {
192  /* SnapshotAny passed by caller (not serialized) */
193  snapshot = SnapshotAny;
194  }
195 
196  return relation->rd_tableam->scan_begin(relation, snapshot, 0, NULL,
197  pscan, flags);
198 }
Snapshot RestoreSnapshot(char *start_address)
Definition: snapmgr.c:1781
#define SnapshotAny
Definition: snapmgr.h:33

References Assert(), ParallelTableScanDescData::phs_relid, ParallelTableScanDescData::phs_snapshot_any, ParallelTableScanDescData::phs_snapshot_off, RelationData::rd_tableam, RegisterSnapshot(), RelationGetRelid, RestoreSnapshot(), TableAmRoutine::scan_begin, SnapshotAny, SO_ALLOW_PAGEMODE, SO_ALLOW_STRAT, SO_ALLOW_SYNC, SO_TEMP_SNAPSHOT, and SO_TYPE_SEQSCAN.

Referenced by _brin_parallel_scan_and_build(), _bt_parallel_scan_and_sort(), ExecSeqScanInitializeDSM(), and ExecSeqScanInitializeWorker().

◆ table_beginscan_sampling()

static TableScanDesc table_beginscan_sampling ( Relation  rel,
Snapshot  snapshot,
int  nkeys,
struct ScanKeyData key,
bool  allow_strat,
bool  allow_sync,
bool  allow_pagemode 
)
inlinestatic

Definition at line 962 of file tableam.h.

966 {
967  uint32 flags = SO_TYPE_SAMPLESCAN;
968 
969  if (allow_strat)
970  flags |= SO_ALLOW_STRAT;
971  if (allow_sync)
972  flags |= SO_ALLOW_SYNC;
973  if (allow_pagemode)
974  flags |= SO_ALLOW_PAGEMODE;
975 
976  return rel->rd_tableam->scan_begin(rel, snapshot, nkeys, key, NULL, flags);
977 }

References sort-test::key, RelationData::rd_tableam, TableAmRoutine::scan_begin, SO_ALLOW_PAGEMODE, SO_ALLOW_STRAT, SO_ALLOW_SYNC, and SO_TYPE_SAMPLESCAN.

Referenced by tablesample_init().

◆ table_beginscan_strat()

static TableScanDesc table_beginscan_strat ( Relation  rel,
Snapshot  snapshot,
int  nkeys,
struct ScanKeyData key,
bool  allow_strat,
bool  allow_sync 
)
inlinestatic

Definition at line 925 of file tableam.h.

928 {
930 
931  if (allow_strat)
932  flags |= SO_ALLOW_STRAT;
933  if (allow_sync)
934  flags |= SO_ALLOW_SYNC;
935 
936  return rel->rd_tableam->scan_begin(rel, snapshot, nkeys, key, NULL, flags);
937 }

References sort-test::key, RelationData::rd_tableam, TableAmRoutine::scan_begin, SO_ALLOW_PAGEMODE, SO_ALLOW_STRAT, SO_ALLOW_SYNC, and SO_TYPE_SEQSCAN.

Referenced by bt_check_every_level(), heapam_index_build_range_scan(), heapam_index_validate_scan(), IndexCheckExclusion(), pgstat_heap(), and systable_beginscan().

◆ table_beginscan_tid()

static TableScanDesc table_beginscan_tid ( Relation  rel,
Snapshot  snapshot 
)
inlinestatic

Definition at line 985 of file tableam.h.

986 {
987  uint32 flags = SO_TYPE_TIDSCAN;
988 
989  return rel->rd_tableam->scan_begin(rel, snapshot, 0, NULL, NULL, flags);
990 }

References RelationData::rd_tableam, TableAmRoutine::scan_begin, and SO_TYPE_TIDSCAN.

Referenced by currtid_internal(), and TidListEval().

◆ table_beginscan_tidrange()

static TableScanDesc table_beginscan_tidrange ( Relation  rel,
Snapshot  snapshot,
ItemPointer  mintid,
ItemPointer  maxtid 
)
inlinestatic

Definition at line 1079 of file tableam.h.

1082 {
1083  TableScanDesc sscan;
1085 
1086  sscan = rel->rd_tableam->scan_begin(rel, snapshot, 0, NULL, NULL, flags);
1087 
1088  /* Set the range of TIDs to scan */
1089  sscan->rs_rd->rd_tableam->scan_set_tidrange(sscan, mintid, maxtid);
1090 
1091  return sscan;
1092 }
void(* scan_set_tidrange)(TableScanDesc scan, ItemPointer mintid, ItemPointer maxtid)
Definition: tableam.h:364
Relation rs_rd
Definition: relscan.h:34

References RelationData::rd_tableam, TableScanDescData::rs_rd, TableAmRoutine::scan_begin, TableAmRoutine::scan_set_tidrange, SO_ALLOW_PAGEMODE, and SO_TYPE_TIDRANGESCAN.

Referenced by TidRangeNext().

◆ table_block_parallelscan_estimate()

Size table_block_parallelscan_estimate ( Relation  rel)

Definition at line 392 of file tableam.c.

393 {
394  return sizeof(ParallelBlockTableScanDescData);
395 }
struct ParallelBlockTableScanDescData ParallelBlockTableScanDescData

◆ table_block_parallelscan_initialize()

Size table_block_parallelscan_initialize ( Relation  rel,
ParallelTableScanDesc  pscan 
)

Definition at line 398 of file tableam.c.

399 {
401 
402  bpscan->base.phs_relid = RelationGetRelid(rel);
403  bpscan->phs_nblocks = RelationGetNumberOfBlocks(rel);
404  /* compare phs_syncscan initialization to similar logic in initscan */
406  !RelationUsesLocalBuffers(rel) &&
407  bpscan->phs_nblocks > NBuffers / 4;
408  SpinLockInit(&bpscan->phs_mutex);
410  pg_atomic_init_u64(&bpscan->phs_nallocated, 0);
411 
412  return sizeof(ParallelBlockTableScanDescData);
413 }
static void pg_atomic_init_u64(volatile pg_atomic_uint64 *ptr, uint64 val)
Definition: atomics.h:410
#define InvalidBlockNumber
Definition: block.h:33
#define RelationGetNumberOfBlocks(reln)
Definition: bufmgr.h:229
int NBuffers
Definition: globals.c:138
#define RelationUsesLocalBuffers(relation)
Definition: rel.h:638
struct ParallelBlockTableScanDescData * ParallelBlockTableScanDesc
Definition: relscan.h:85
#define SpinLockInit(lock)
Definition: spin.h:60
pg_atomic_uint64 phs_nallocated
Definition: relscan.h:82
ParallelTableScanDescData base
Definition: relscan.h:77
bool synchronize_seqscans
Definition: tableam.c:49

References ParallelBlockTableScanDescData::base, InvalidBlockNumber, NBuffers, pg_atomic_init_u64(), ParallelBlockTableScanDescData::phs_mutex, ParallelBlockTableScanDescData::phs_nallocated, ParallelBlockTableScanDescData::phs_nblocks, ParallelTableScanDescData::phs_relid, ParallelBlockTableScanDescData::phs_startblock, ParallelTableScanDescData::phs_syncscan, RelationGetNumberOfBlocks, RelationGetRelid, RelationUsesLocalBuffers, SpinLockInit, and synchronize_seqscans.

◆ table_block_parallelscan_nextpage()

BlockNumber table_block_parallelscan_nextpage ( Relation  rel,
ParallelBlockTableScanWorker  pbscanwork,
ParallelBlockTableScanDesc  pbscan 
)

Definition at line 501 of file tableam.c.

504 {
505  BlockNumber page;
506  uint64 nallocated;
507 
508  /*
509  * The logic below allocates block numbers out to parallel workers in a
510  * way that each worker will receive a set of consecutive block numbers to
511  * scan. Earlier versions of this would allocate the next highest block
512  * number to the next worker to call this function. This would generally
513  * result in workers never receiving consecutive block numbers. Some
514  * operating systems would not detect the sequential I/O pattern due to
515  * each backend being a different process which could result in poor
516  * performance due to inefficient or no readahead. To work around this
517  * issue, we now allocate a range of block numbers for each worker and
518  * when they come back for another block, we give them the next one in
519  * that range until the range is complete. When the worker completes the
520  * range of blocks we then allocate another range for it and return the
521  * first block number from that range.
522  *
523  * Here we name these ranges of blocks "chunks". The initial size of
524  * these chunks is determined in table_block_parallelscan_startblock_init
525  * based on the size of the relation. Towards the end of the scan, we
526  * start making reductions in the size of the chunks in order to attempt
527  * to divide the remaining work over all the workers as evenly as
528  * possible.
529  *
530  * Here pbscanwork is local worker memory. phsw_chunk_remaining tracks
531  * the number of blocks remaining in the chunk. When that reaches 0 then
532  * we must allocate a new chunk for the worker.
533  *
534  * phs_nallocated tracks how many blocks have been allocated to workers
535  * already. When phs_nallocated >= rs_nblocks, all blocks have been
536  * allocated.
537  *
538  * Because we use an atomic fetch-and-add to fetch the current value, the
539  * phs_nallocated counter will exceed rs_nblocks, because workers will
540  * still increment the value, when they try to allocate the next block but
541  * all blocks have been allocated already. The counter must be 64 bits
542  * wide because of that, to avoid wrapping around when rs_nblocks is close
543  * to 2^32.
544  *
545  * The actual block to return is calculated by adding the counter to the
546  * starting block number, modulo nblocks.
547  */
548 
549  /*
550  * First check if we have any remaining blocks in a previous chunk for
551  * this worker. We must consume all of the blocks from that before we
552  * allocate a new chunk to the worker.
553  */
554  if (pbscanwork->phsw_chunk_remaining > 0)
555  {
556  /*
557  * Give them the next block in the range and update the remaining
558  * number of blocks.
559  */
560  nallocated = ++pbscanwork->phsw_nallocated;
561  pbscanwork->phsw_chunk_remaining--;
562  }
563  else
564  {
565  /*
566  * When we've only got PARALLEL_SEQSCAN_RAMPDOWN_CHUNKS chunks
567  * remaining in the scan, we half the chunk size. Since we reduce the
568  * chunk size here, we'll hit this again after doing
569  * PARALLEL_SEQSCAN_RAMPDOWN_CHUNKS at the new size. After a few
570  * iterations of this, we'll end up doing the last few blocks with the
571  * chunk size set to 1.
572  */
573  if (pbscanwork->phsw_chunk_size > 1 &&
574  pbscanwork->phsw_nallocated > pbscan->phs_nblocks -
576  pbscanwork->phsw_chunk_size >>= 1;
577 
578  nallocated = pbscanwork->phsw_nallocated =
580  pbscanwork->phsw_chunk_size);
581 
582  /*
583  * Set the remaining number of blocks in this chunk so that subsequent
584  * calls from this worker continue on with this chunk until it's done.
585  */
586  pbscanwork->phsw_chunk_remaining = pbscanwork->phsw_chunk_size - 1;
587  }
588 
589  if (nallocated >= pbscan->phs_nblocks)
590  page = InvalidBlockNumber; /* all blocks have been allocated */
591  else
592  page = (nallocated + pbscan->phs_startblock) % pbscan->phs_nblocks;
593 
594  /*
595  * Report scan location. Normally, we report the current page number.
596  * When we reach the end of the scan, though, we report the starting page,
597  * not the ending page, just so the starting positions for later scans
598  * doesn't slew backwards. We only report the position at the end of the
599  * scan once, though: subsequent callers will report nothing.
600  */
601  if (pbscan->base.phs_syncscan)
602  {
603  if (page != InvalidBlockNumber)
604  ss_report_location(rel, page);
605  else if (nallocated == pbscan->phs_nblocks)
606  ss_report_location(rel, pbscan->phs_startblock);
607  }
608 
609  return page;
610 }
static uint64 pg_atomic_fetch_add_u64(volatile pg_atomic_uint64 *ptr, int64 add_)
Definition: atomics.h:462
uint32 BlockNumber
Definition: block.h:31
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
void ss_report_location(Relation rel, BlockNumber location)
Definition: syncscan.c:289
#define PARALLEL_SEQSCAN_RAMPDOWN_CHUNKS
Definition: tableam.c:43

References ParallelBlockTableScanDescData::base, if(), InvalidBlockNumber, PARALLEL_SEQSCAN_RAMPDOWN_CHUNKS, pg_atomic_fetch_add_u64(), ParallelBlockTableScanDescData::phs_nallocated, ParallelBlockTableScanDescData::phs_nblocks, ParallelBlockTableScanDescData::phs_startblock, ParallelTableScanDescData::phs_syncscan, ParallelBlockTableScanWorkerData::phsw_chunk_remaining, ParallelBlockTableScanWorkerData::phsw_chunk_size, ParallelBlockTableScanWorkerData::phsw_nallocated, and ss_report_location().

Referenced by heapgettup_advance_block(), and heapgettup_initial_block().

◆ table_block_parallelscan_reinitialize()

void table_block_parallelscan_reinitialize ( Relation  rel,
ParallelTableScanDesc  pscan 
)

Definition at line 416 of file tableam.c.

417 {
419 
420  pg_atomic_write_u64(&bpscan->phs_nallocated, 0);
421 }
static void pg_atomic_write_u64(volatile pg_atomic_uint64 *ptr, uint64 val)
Definition: atomics.h:433

References pg_atomic_write_u64(), and ParallelBlockTableScanDescData::phs_nallocated.

◆ table_block_parallelscan_startblock_init()

void table_block_parallelscan_startblock_init ( Relation  rel,
ParallelBlockTableScanWorker  pbscanwork,
ParallelBlockTableScanDesc  pbscan 
)

Definition at line 431 of file tableam.c.

434 {
435  BlockNumber sync_startpage = InvalidBlockNumber;
436 
437  /* Reset the state we use for controlling allocation size. */
438  memset(pbscanwork, 0, sizeof(*pbscanwork));
439 
440  StaticAssertStmt(MaxBlockNumber <= 0xFFFFFFFE,
441  "pg_nextpower2_32 may be too small for non-standard BlockNumber width");
442 
443  /*
444  * We determine the chunk size based on the size of the relation. First we
445  * split the relation into PARALLEL_SEQSCAN_NCHUNKS chunks but we then
446  * take the next highest power of 2 number of the chunk size. This means
447  * we split the relation into somewhere between PARALLEL_SEQSCAN_NCHUNKS
448  * and PARALLEL_SEQSCAN_NCHUNKS / 2 chunks.
449  */
450  pbscanwork->phsw_chunk_size = pg_nextpower2_32(Max(pbscan->phs_nblocks /
452 
453  /*
454  * Ensure we don't go over the maximum chunk size with larger tables. This
455  * means we may get much more than PARALLEL_SEQSCAN_NCHUNKS for larger
456  * tables. Too large a chunk size has been shown to be detrimental to
457  * synchronous scan performance.
458  */
459  pbscanwork->phsw_chunk_size = Min(pbscanwork->phsw_chunk_size,
461 
462 retry:
463  /* Grab the spinlock. */
464  SpinLockAcquire(&pbscan->phs_mutex);
465 
466  /*
467  * If the scan's startblock has not yet been initialized, we must do so
468  * now. If this is not a synchronized scan, we just start at block 0, but
469  * if it is a synchronized scan, we must get the starting position from
470  * the synchronized scan machinery. We can't hold the spinlock while
471  * doing that, though, so release the spinlock, get the information we
472  * need, and retry. If nobody else has initialized the scan in the
473  * meantime, we'll fill in the value we fetched on the second time
474  * through.
475  */
476  if (pbscan->phs_startblock == InvalidBlockNumber)
477  {
478  if (!pbscan->base.phs_syncscan)
479  pbscan->phs_startblock = 0;
480  else if (sync_startpage != InvalidBlockNumber)
481  pbscan->phs_startblock = sync_startpage;
482  else
483  {
484  SpinLockRelease(&pbscan->phs_mutex);
485  sync_startpage = ss_get_location(rel, pbscan->phs_nblocks);
486  goto retry;
487  }
488  }
489  SpinLockRelease(&pbscan->phs_mutex);
490 }
#define MaxBlockNumber
Definition: block.h:35
#define Min(x, y)
Definition: c.h:993
#define Max(x, y)
Definition: c.h:987
#define StaticAssertStmt(condition, errmessage)
Definition: c.h:927
static uint32 pg_nextpower2_32(uint32 num)
Definition: pg_bitutils.h:189
#define SpinLockRelease(lock)
Definition: spin.h:64
#define SpinLockAcquire(lock)
Definition: spin.h:62
BlockNumber ss_get_location(Relation rel, BlockNumber relnblocks)
Definition: syncscan.c:254
#define PARALLEL_SEQSCAN_MAX_CHUNK_SIZE
Definition: tableam.c:45
#define PARALLEL_SEQSCAN_NCHUNKS
Definition: tableam.c:41

References ParallelBlockTableScanDescData::base, InvalidBlockNumber, Max, MaxBlockNumber, Min, PARALLEL_SEQSCAN_MAX_CHUNK_SIZE, PARALLEL_SEQSCAN_NCHUNKS, pg_nextpower2_32(), ParallelBlockTableScanDescData::phs_mutex, ParallelBlockTableScanDescData::phs_nblocks, ParallelBlockTableScanDescData::phs_startblock, ParallelTableScanDescData::phs_syncscan, ParallelBlockTableScanWorkerData::phsw_chunk_size, SpinLockAcquire, SpinLockRelease, ss_get_location(), and StaticAssertStmt.

Referenced by heapgettup_initial_block().

◆ table_block_relation_estimate_size()

void table_block_relation_estimate_size ( Relation  rel,
int32 attr_widths,
BlockNumber pages,
double *  tuples,
double *  allvisfrac,
Size  overhead_bytes_per_tuple,
Size  usable_bytes_per_page 
)

Definition at line 663 of file tableam.c.

668 {
669  BlockNumber curpages;
670  BlockNumber relpages;
671  double reltuples;
672  BlockNumber relallvisible;
673  double density;
674 
675  /* it should have storage, so we can call the smgr */
676  curpages = RelationGetNumberOfBlocks(rel);
677 
678  /* coerce values in pg_class to more desirable types */
679  relpages = (BlockNumber) rel->rd_rel->relpages;
680  reltuples = (double) rel->rd_rel->reltuples;
681  relallvisible = (BlockNumber) rel->rd_rel->relallvisible;
682 
683  /*
684  * HACK: if the relation has never yet been vacuumed, use a minimum size
685  * estimate of 10 pages. The idea here is to avoid assuming a
686  * newly-created table is really small, even if it currently is, because
687  * that may not be true once some data gets loaded into it. Once a vacuum
688  * or analyze cycle has been done on it, it's more reasonable to believe
689  * the size is somewhat stable.
690  *
691  * (Note that this is only an issue if the plan gets cached and used again
692  * after the table has been filled. What we're trying to avoid is using a
693  * nestloop-type plan on a table that has grown substantially since the
694  * plan was made. Normally, autovacuum/autoanalyze will occur once enough
695  * inserts have happened and cause cached-plan invalidation; but that
696  * doesn't happen instantaneously, and it won't happen at all for cases
697  * such as temporary tables.)
698  *
699  * We test "never vacuumed" by seeing whether reltuples < 0.
700  *
701  * If the table has inheritance children, we don't apply this heuristic.
702  * Totally empty parent tables are quite common, so we should be willing
703  * to believe that they are empty.
704  */
705  if (curpages < 10 &&
706  reltuples < 0 &&
707  !rel->rd_rel->relhassubclass)
708  curpages = 10;
709 
710  /* report estimated # pages */
711  *pages = curpages;
712  /* quick exit if rel is clearly empty */
713  if (curpages == 0)
714  {
715  *tuples = 0;
716  *allvisfrac = 0;
717  return;
718  }
719 
720  /* estimate number of tuples from previous tuple density */
721  if (reltuples >= 0 && relpages > 0)
722  density = reltuples / (double) relpages;
723  else
724  {
725  /*
726  * When we have no data because the relation was never yet vacuumed,
727  * estimate tuple width from attribute datatypes. We assume here that
728  * the pages are completely full, which is OK for tables but is
729  * probably an overestimate for indexes. Fortunately
730  * get_relation_info() can clamp the overestimate to the parent
731  * table's size.
732  *
733  * Note: this code intentionally disregards alignment considerations,
734  * because (a) that would be gilding the lily considering how crude
735  * the estimate is, (b) it creates platform dependencies in the
736  * default plans which are kind of a headache for regression testing,
737  * and (c) different table AMs might use different padding schemes.
738  */
739  int32 tuple_width;
740  int fillfactor;
741 
742  /*
743  * Without reltuples/relpages, we also need to consider fillfactor.
744  * The other branch considers it implicitly by calculating density
745  * from actual relpages/reltuples statistics.
746  */
748 
749  tuple_width = get_rel_data_width(rel, attr_widths);
750  tuple_width += overhead_bytes_per_tuple;
751  /* note: integer division is intentional here */
752  density = (usable_bytes_per_page * fillfactor / 100) / tuple_width;
753  }
754  *tuples = rint(density * (double) curpages);
755 
756  /*
757  * We use relallvisible as-is, rather than scaling it up like we do for
758  * the pages and tuples counts, on the theory that any pages added since
759  * the last VACUUM are most likely not marked all-visible. But costsize.c
760  * wants it converted to a fraction.
761  */
762  if (relallvisible == 0 || curpages <= 0)
763  *allvisfrac = 0;
764  else if ((double) relallvisible >= curpages)
765  *allvisfrac = 1;
766  else
767  *allvisfrac = (double) relallvisible / curpages;
768 }
signed int int32
Definition: c.h:483
int fillfactor
Definition: pgbench.c:187
int32 get_rel_data_width(Relation rel, int32 *attr_widths)
Definition: plancat.c:1138
#define RelationGetFillFactor(relation, defaultff)
Definition: rel.h:362
#define HEAP_DEFAULT_FILLFACTOR
Definition: rel.h:348
Form_pg_class rd_rel
Definition: rel.h:111

References fillfactor, get_rel_data_width(), HEAP_DEFAULT_FILLFACTOR, if(), RelationData::rd_rel, RelationGetFillFactor, and RelationGetNumberOfBlocks.

Referenced by heapam_estimate_rel_size().

◆ table_block_relation_size()

uint64 table_block_relation_size ( Relation  rel,
ForkNumber  forkNumber 
)

Definition at line 626 of file tableam.c.

627 {
628  uint64 nblocks = 0;
629 
630  /* InvalidForkNumber indicates returning the size for all forks */
631  if (forkNumber == InvalidForkNumber)
632  {
633  for (int i = 0; i < MAX_FORKNUM; i++)
634  nblocks += smgrnblocks(RelationGetSmgr(rel), i);
635  }
636  else
637  nblocks = smgrnblocks(RelationGetSmgr(rel), forkNumber);
638 
639  return nblocks * BLCKSZ;
640 }
int i
Definition: isn.c:73
static SMgrRelation RelationGetSmgr(Relation rel)
Definition: rel.h:572
@ InvalidForkNumber
Definition: relpath.h:49
#define MAX_FORKNUM
Definition: relpath.h:62
BlockNumber smgrnblocks(SMgrRelation reln, ForkNumber forknum)
Definition: smgr.c:611

References i, InvalidForkNumber, MAX_FORKNUM, RelationGetSmgr(), and smgrnblocks().

◆ table_endscan()

◆ table_finish_bulk_insert()

static void table_finish_bulk_insert ( Relation  rel,
int  options 
)
inlinestatic

Definition at line 1590 of file tableam.h.

1591 {
1592  /* optional callback */
1593  if (rel->rd_tableam && rel->rd_tableam->finish_bulk_insert)
1595 }
void(* finish_bulk_insert)(Relation rel, int options)
Definition: tableam.h:570

References TableAmRoutine::finish_bulk_insert, and RelationData::rd_tableam.

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

◆ table_index_build_range_scan()

static double table_index_build_range_scan ( Relation  table_rel,
Relation  index_rel,
struct IndexInfo index_info,
bool  allow_sync,
bool  anyvisible,
bool  progress,
BlockNumber  start_blockno,
BlockNumber  numblocks,
IndexBuildCallback  callback,
void *  callback_state,
TableScanDesc  scan 
)
inlinestatic

Definition at line 1805 of file tableam.h.

1816 {
1817  return table_rel->rd_tableam->index_build_range_scan(table_rel,
1818  index_rel,
1819  index_info,
1820  allow_sync,
1821  anyvisible,
1822  progress,
1823  start_blockno,
1824  numblocks,
1825  callback,
1826  callback_state,
1827  scan);
1828 }
int progress
Definition: pgbench.c:261
static void callback(struct sockaddr *addr, struct sockaddr *mask, void *unused)
Definition: test_ifaddrs.c:46

References callback(), TableAmRoutine::index_build_range_scan, progress, and RelationData::rd_tableam.

Referenced by summarize_range().

◆ table_index_build_scan()

static double table_index_build_scan ( Relation  table_rel,
Relation  index_rel,
struct IndexInfo index_info,
bool  allow_sync,
bool  progress,
IndexBuildCallback  callback,
void *  callback_state,
TableScanDesc  scan 
)
inlinestatic

Definition at line 1772 of file tableam.h.

1780 {
1781  return table_rel->rd_tableam->index_build_range_scan(table_rel,
1782  index_rel,
1783  index_info,
1784  allow_sync,
1785  false,
1786  progress,
1787  0,
1789  callback,
1790  callback_state,
1791  scan);
1792 }

References callback(), TableAmRoutine::index_build_range_scan, InvalidBlockNumber, progress, and RelationData::rd_tableam.

Referenced by _brin_parallel_scan_and_build(), _bt_parallel_scan_and_sort(), _bt_spools_heapscan(), blbuild(), brinbuild(), bt_check_every_level(), ginbuild(), gistbuild(), hashbuild(), and spgbuild().

◆ table_index_delete_tuples()

static TransactionId table_index_delete_tuples ( Relation  rel,
TM_IndexDeleteOp delstate 
)
inlinestatic

Definition at line 1351 of file tableam.h.

1352 {
1353  return rel->rd_tableam->index_delete_tuples(rel, delstate);
1354 }

References TableAmRoutine::index_delete_tuples, and RelationData::rd_tableam.

Referenced by _bt_delitems_delete_check(), and index_compute_xid_horizon_for_tuples().

◆ table_index_fetch_begin()

static IndexFetchTableData* table_index_fetch_begin ( Relation  rel)
inlinestatic

Definition at line 1187 of file tableam.h.

1188 {
1189  return rel->rd_tableam->index_fetch_begin(rel);
1190 }

References TableAmRoutine::index_fetch_begin, and RelationData::rd_tableam.

Referenced by index_beginscan(), index_beginscan_parallel(), and table_index_fetch_tuple_check().

◆ table_index_fetch_end()

static void table_index_fetch_end ( struct IndexFetchTableData scan)
inlinestatic

Definition at line 1206 of file tableam.h.

1207 {
1208  scan->rel->rd_tableam->index_fetch_end(scan);
1209 }

References TableAmRoutine::index_fetch_end, RelationData::rd_tableam, and IndexFetchTableData::rel.

Referenced by index_endscan(), and table_index_fetch_tuple_check().

◆ table_index_fetch_reset()

static void table_index_fetch_reset ( struct IndexFetchTableData scan)
inlinestatic

◆ table_index_fetch_tuple()

static bool table_index_fetch_tuple ( struct IndexFetchTableData scan,
ItemPointer  tid,
Snapshot  snapshot,
TupleTableSlot slot,
bool call_again,
bool all_dead 
)
inlinestatic

Definition at line 1236 of file tableam.h.

1241 {
1242  /*
1243  * We don't expect direct calls to table_index_fetch_tuple with valid
1244  * CheckXidAlive for catalog or regular tables. See detailed comments in
1245  * xact.c where these variables are declared.
1246  */
1248  elog(ERROR, "unexpected table_index_fetch_tuple call during logical decoding");
1249 
1250  return scan->rel->rd_tableam->index_fetch_tuple(scan, tid, snapshot,
1251  slot, call_again,
1252  all_dead);
1253 }
#define unlikely(x)
Definition: c.h:300
#define TransactionIdIsValid(xid)
Definition: transam.h:41
bool bsysscan
Definition: xact.c:100
TransactionId CheckXidAlive
Definition: xact.c:99

References bsysscan, CheckXidAlive, elog(), ERROR, TableAmRoutine::index_fetch_tuple, RelationData::rd_tableam, IndexFetchTableData::rel, TransactionIdIsValid, and unlikely.

Referenced by index_fetch_heap(), and table_index_fetch_tuple_check().

◆ table_index_fetch_tuple_check()

bool table_index_fetch_tuple_check ( Relation  rel,
ItemPointer  tid,
Snapshot  snapshot,
bool all_dead 
)

Definition at line 218 of file tableam.c.

222 {
223  IndexFetchTableData *scan;
224  TupleTableSlot *slot;
225  bool call_again = false;
226  bool found;
227 
228  slot = table_slot_create(rel, NULL);
229  scan = table_index_fetch_begin(rel);
230  found = table_index_fetch_tuple(scan, tid, snapshot, slot, &call_again,
231  all_dead);
232  table_index_fetch_end(scan);
234 
235  return found;
236 }
void ExecDropSingleTupleTableSlot(TupleTableSlot *slot)
Definition: execTuples.c:1253
TupleTableSlot * table_slot_create(Relation relation, List **reglist)
Definition: tableam.c:91
static IndexFetchTableData * table_index_fetch_begin(Relation rel)
Definition: tableam.h:1187
static void table_index_fetch_end(struct IndexFetchTableData *scan)
Definition: tableam.h:1206
static bool table_index_fetch_tuple(struct IndexFetchTableData *scan, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot, bool *call_again, bool *all_dead)
Definition: tableam.h:1236

References ExecDropSingleTupleTableSlot(), table_index_fetch_begin(), table_index_fetch_end(), table_index_fetch_tuple(), and table_slot_create().

Referenced by _bt_check_unique().

◆ table_index_validate_scan()

static void table_index_validate_scan ( Relation  table_rel,
Relation  index_rel,
struct IndexInfo index_info,
Snapshot  snapshot,
struct ValidateIndexState state 
)
inlinestatic

Definition at line 1836 of file tableam.h.

1841 {
1842  table_rel->rd_tableam->index_validate_scan(table_rel,
1843  index_rel,
1844  index_info,
1845  snapshot,
1846  state);
1847 }
Definition: regguts.h:323

References TableAmRoutine::index_validate_scan, and RelationData::rd_tableam.

Referenced by validate_index().

◆ table_multi_insert()

static void table_multi_insert ( Relation  rel,
TupleTableSlot **  slots,
int  nslots,
CommandId  cid,
int  options,
struct BulkInsertStateData bistate 
)
inlinestatic

Definition at line 1452 of file tableam.h.

1454 {
1455  rel->rd_tableam->multi_insert(rel, slots, nslots,
1456  cid, options, bistate);
1457 }

References TableAmRoutine::multi_insert, and RelationData::rd_tableam.

Referenced by CopyMultiInsertBufferFlush().

◆ table_parallelscan_estimate()

Size table_parallelscan_estimate ( Relation  rel,
Snapshot  snapshot 
)

Definition at line 140 of file tableam.c.

141 {
142  Size sz = 0;
143 
144  if (IsMVCCSnapshot(snapshot))
145  sz = add_size(sz, EstimateSnapshotSpace(snapshot));
146  else
147  Assert(snapshot == SnapshotAny);
148 
149  sz = add_size(sz, rel->rd_tableam->parallelscan_estimate(rel));
150 
151  return sz;
152 }
size_t Size
Definition: c.h:594
Size add_size(Size s1, Size s2)
Definition: shmem.c:494
Size EstimateSnapshotSpace(Snapshot snapshot)
Definition: snapmgr.c:1698
#define IsMVCCSnapshot(snapshot)
Definition: snapmgr.h:62

References add_size(), Assert(), EstimateSnapshotSpace(), IsMVCCSnapshot, TableAmRoutine::parallelscan_estimate, RelationData::rd_tableam, and SnapshotAny.

Referenced by _brin_parallel_estimate_shared(), _bt_parallel_estimate_shared(), and ExecSeqScanEstimate().

◆ table_parallelscan_initialize()

void table_parallelscan_initialize ( Relation  rel,
ParallelTableScanDesc  pscan,
Snapshot  snapshot 
)

Definition at line 155 of file tableam.c.

157 {
158  Size snapshot_off = rel->rd_tableam->parallelscan_initialize(rel, pscan);
159 
160  pscan->phs_snapshot_off = snapshot_off;
161 
162  if (IsMVCCSnapshot(snapshot))
163  {
164  SerializeSnapshot(snapshot, (char *) pscan + pscan->phs_snapshot_off);
165  pscan->phs_snapshot_any = false;
166  }
167  else
168  {
169  Assert(snapshot == SnapshotAny);
170  pscan->phs_snapshot_any = true;
171  }
172 }
void SerializeSnapshot(Snapshot snapshot, char *start_address)
Definition: snapmgr.c:1722

References Assert(), IsMVCCSnapshot, TableAmRoutine::parallelscan_initialize, ParallelTableScanDescData::phs_snapshot_any, ParallelTableScanDescData::phs_snapshot_off, RelationData::rd_tableam, SerializeSnapshot(), and SnapshotAny.

Referenced by _brin_begin_parallel(), _bt_begin_parallel(), and ExecSeqScanInitializeDSM().

◆ table_parallelscan_reinitialize()

static void table_parallelscan_reinitialize ( Relation  rel,
ParallelTableScanDesc  pscan 
)
inlinestatic

Definition at line 1169 of file tableam.h.

1170 {
1171  rel->rd_tableam->parallelscan_reinitialize(rel, pscan);
1172 }

References TableAmRoutine::parallelscan_reinitialize, and RelationData::rd_tableam.

Referenced by ExecSeqScanReInitializeDSM().

◆ table_relation_copy_data()

static void table_relation_copy_data ( Relation  rel,
const RelFileLocator newrlocator 
)
inlinestatic

Definition at line 1646 of file tableam.h.

1647 {
1648  rel->rd_tableam->relation_copy_data(rel, newrlocator);
1649 }

References RelationData::rd_tableam, and TableAmRoutine::relation_copy_data.

Referenced by ATExecSetTableSpace().

◆ table_relation_copy_for_cluster()

static void table_relation_copy_for_cluster ( Relation  OldTable,
Relation  NewTable,
Relation  OldIndex,
bool  use_sort,
TransactionId  OldestXmin,
TransactionId xid_cutoff,
MultiXactId multi_cutoff,
double *  num_tuples,
double *  tups_vacuumed,
double *  tups_recently_dead 
)
inlinestatic

Definition at line 1673 of file tableam.h.

1682 {
1683  OldTable->rd_tableam->relation_copy_for_cluster(OldTable, NewTable, OldIndex,
1684  use_sort, OldestXmin,
1685  xid_cutoff, multi_cutoff,
1686  num_tuples, tups_vacuumed,
1687  tups_recently_dead);
1688 }

References RelationData::rd_tableam, and TableAmRoutine::relation_copy_for_cluster.

Referenced by copy_table_data().

◆ table_relation_estimate_size()

static void table_relation_estimate_size ( Relation  rel,
int32 attr_widths,
BlockNumber pages,
double *  tuples,
double *  allvisfrac 
)
inlinestatic

Definition at line 1934 of file tableam.h.

1937 {
1938  rel->rd_tableam->relation_estimate_size(rel, attr_widths, pages, tuples,
1939  allvisfrac);
1940 }

References RelationData::rd_tableam, and TableAmRoutine::relation_estimate_size.

Referenced by estimate_rel_size().

◆ table_relation_fetch_toast_slice()

static void table_relation_fetch_toast_slice ( Relation  toastrel,
Oid  valueid,
int32  attrsize,
int32  sliceoffset,
int32  slicelength,
struct varlena result 
)
inlinestatic

Definition at line 1913 of file tableam.h.

1916 {
1917  toastrel->rd_tableam->relation_fetch_toast_slice(toastrel, valueid,
1918  attrsize,
1919  sliceoffset, slicelength,
1920  result);
1921 }
void(* relation_fetch_toast_slice)(Relation toastrel, Oid valueid, int32 attrsize, int32 sliceoffset, int32 slicelength, struct varlena *result)
Definition: tableam.h:743

References RelationData::rd_tableam, and TableAmRoutine::relation_fetch_toast_slice.

Referenced by toast_fetch_datum(), and toast_fetch_datum_slice().

◆ table_relation_needs_toast_table()

static bool table_relation_needs_toast_table ( Relation  rel)
inlinestatic

Definition at line 1874 of file tableam.h.

1875 {
1876  return rel->rd_tableam->relation_needs_toast_table(rel);
1877 }

References RelationData::rd_tableam, and TableAmRoutine::relation_needs_toast_table.

Referenced by needs_toast_table().

◆ table_relation_nontransactional_truncate()

static void table_relation_nontransactional_truncate ( Relation  rel)
inlinestatic

Definition at line 1634 of file tableam.h.

1635 {
1637 }

References RelationData::rd_tableam, and TableAmRoutine::relation_nontransactional_truncate.

Referenced by heap_truncate_one_rel().

◆ table_relation_set_new_filelocator()

static void table_relation_set_new_filelocator ( Relation  rel,
const RelFileLocator newrlocator,
char  persistence,
TransactionId freezeXid,
MultiXactId minmulti 
)
inlinestatic

Definition at line 1616 of file tableam.h.

1621 {
1622  rel->rd_tableam->relation_set_new_filelocator(rel, newrlocator,
1623  persistence, freezeXid,
1624  minmulti);
1625 }

References RelationData::rd_tableam, and TableAmRoutine::relation_set_new_filelocator.

Referenced by heap_create(), and RelationSetNewRelfilenumber().

◆ table_relation_size()

static uint64 table_relation_size ( Relation  rel,
ForkNumber  forkNumber 
)
inlinestatic

Definition at line 1865 of file tableam.h.

1866 {
1867  return rel->rd_tableam->relation_size(rel, forkNumber);
1868 }

References RelationData::rd_tableam, and TableAmRoutine::relation_size.

Referenced by RelationGetNumberOfBlocksInFork().

◆ table_relation_toast_am()

static Oid table_relation_toast_am ( Relation  rel)
inlinestatic

Definition at line 1884 of file tableam.h.

1885 {
1886  return rel->rd_tableam->relation_toast_am(rel);
1887 }
Oid(* relation_toast_am)(Relation rel)
Definition: tableam.h:736

References RelationData::rd_tableam, and TableAmRoutine::relation_toast_am.

Referenced by create_toast_table().

◆ table_relation_vacuum()

static void table_relation_vacuum ( Relation  rel,
struct VacuumParams params,
BufferAccessStrategy  bstrategy 
)
inlinestatic

Definition at line 1702 of file tableam.h.

1704 {
1705  rel->rd_tableam->relation_vacuum(rel, params, bstrategy);
1706 }

References RelationData::rd_tableam, and TableAmRoutine::relation_vacuum.

Referenced by vacuum_rel().

◆ table_rescan()

static void table_rescan ( TableScanDesc  scan,
struct ScanKeyData key 
)
inlinestatic

Definition at line 1018 of file tableam.h.

1020 {
1021  scan->rs_rd->rd_tableam->scan_rescan(scan, key, false, false, false, false);
1022 }

References sort-test::key, RelationData::rd_tableam, TableScanDescData::rs_rd, and TableAmRoutine::scan_rescan.

Referenced by ExecReScanBitmapHeapScan(), ExecReScanSeqScan(), ExecReScanTidScan(), and RelationFindReplTupleSeq().

◆ table_rescan_set_params()

static void table_rescan_set_params ( TableScanDesc  scan,
struct ScanKeyData key,
bool  allow_strat,
bool  allow_sync,
bool  allow_pagemode 
)
inlinestatic

Definition at line 1033 of file tableam.h.

1035 {
1036  scan->rs_rd->rd_tableam->scan_rescan(scan, key, true,
1037  allow_strat, allow_sync,
1038  allow_pagemode);
1039 }

References sort-test::key, RelationData::rd_tableam, TableScanDescData::rs_rd, and TableAmRoutine::scan_rescan.

Referenced by tablesample_init().

◆ table_rescan_tidrange()

static void table_rescan_tidrange ( TableScanDesc  sscan,
ItemPointer  mintid,
ItemPointer  maxtid 
)
inlinestatic

Definition at line 1100 of file tableam.h.

1102 {
1103  /* Ensure table_beginscan_tidrange() was used. */
1104  Assert((sscan->rs_flags & SO_TYPE_TIDRANGESCAN) != 0);
1105 
1106  sscan->rs_rd->rd_tableam->scan_rescan(sscan, NULL, false, false, false, false);
1107  sscan->rs_rd->rd_tableam->scan_set_tidrange(sscan, mintid, maxtid);
1108 }
uint32 rs_flags
Definition: relscan.h:47

References Assert(), RelationData::rd_tableam, TableScanDescData::rs_flags, TableScanDescData::rs_rd, TableAmRoutine::scan_rescan, TableAmRoutine::scan_set_tidrange, and SO_TYPE_TIDRANGESCAN.

Referenced by TidRangeNext().

◆ table_scan_analyze_next_block()

static bool table_scan_analyze_next_block ( TableScanDesc  scan,
BlockNumber  blockno,
BufferAccessStrategy  bstrategy 
)
inlinestatic

Definition at line 1717 of file tableam.h.

1719 {
1720  return scan->rs_rd->rd_tableam->scan_analyze_next_block(scan, blockno,
1721  bstrategy);
1722 }

References RelationData::rd_tableam, TableScanDescData::rs_rd, and TableAmRoutine::scan_analyze_next_block.

Referenced by acquire_sample_rows().

◆ table_scan_analyze_next_tuple()

static bool table_scan_analyze_next_tuple ( TableScanDesc  scan,
TransactionId  OldestXmin,
double *  liverows,
double *  deadrows,
TupleTableSlot slot 
)
inlinestatic

Definition at line 1735 of file tableam.h.

1738 {
1739  return scan->rs_rd->rd_tableam->scan_analyze_next_tuple(scan, OldestXmin,
1740  liverows, deadrows,
1741  slot);
1742 }

References RelationData::rd_tableam, TableScanDescData::rs_rd, and TableAmRoutine::scan_analyze_next_tuple.

Referenced by acquire_sample_rows().

◆ table_scan_bitmap_next_block()

static bool table_scan_bitmap_next_block ( TableScanDesc  scan,
struct TBMIterateResult tbmres 
)
inlinestatic

Definition at line 1958 of file tableam.h.

1960 {
1961  /*
1962  * We don't expect direct calls to table_scan_bitmap_next_block with valid
1963  * CheckXidAlive for catalog or regular tables. See detailed comments in
1964  * xact.c where these variables are declared.
1965  */
1967  elog(ERROR, "unexpected table_scan_bitmap_next_block call during logical decoding");
1968 
1969  return scan->rs_rd->rd_tableam->scan_bitmap_next_block(scan,
1970  tbmres);
1971 }

References bsysscan, CheckXidAlive, elog(), ERROR, RelationData::rd_tableam, TableScanDescData::rs_rd, TableAmRoutine::scan_bitmap_next_block, TransactionIdIsValid, and unlikely.

Referenced by BitmapHeapNext().

◆ table_scan_bitmap_next_tuple()

static bool table_scan_bitmap_next_tuple ( TableScanDesc  scan,
struct TBMIterateResult tbmres,
TupleTableSlot slot 
)
inlinestatic

Definition at line 1982 of file tableam.h.

1985 {
1986  /*
1987  * We don't expect direct calls to table_scan_bitmap_next_tuple with valid
1988  * CheckXidAlive for catalog or regular tables. See detailed comments in
1989  * xact.c where these variables are declared.
1990  */
1992  elog(ERROR, "unexpected table_scan_bitmap_next_tuple call during logical decoding");
1993 
1994  return scan->rs_rd->rd_tableam->scan_bitmap_next_tuple(scan,
1995  tbmres,
1996  slot);
1997 }

References bsysscan, CheckXidAlive, elog(), ERROR, RelationData::rd_tableam, TableScanDescData::rs_rd, TableAmRoutine::scan_bitmap_next_tuple, TransactionIdIsValid, and unlikely.

Referenced by BitmapHeapNext().

◆ table_scan_getnextslot()

static bool table_scan_getnextslot ( TableScanDesc  sscan,
ScanDirection  direction,
TupleTableSlot slot 
)
inlinestatic

Definition at line 1050 of file tableam.h.

1051 {
1052  slot->tts_tableOid = RelationGetRelid(sscan->rs_rd);
1053 
1054  /* We don't expect actual scans using NoMovementScanDirection */
1055  Assert(direction == ForwardScanDirection ||
1056  direction == BackwardScanDirection);
1057 
1058  /*
1059  * We don't expect direct calls to table_scan_getnextslot with valid
1060  * CheckXidAlive for catalog or regular tables. See detailed comments in
1061  * xact.c where these variables are declared.
1062  */
1064  elog(ERROR, "unexpected table_scan_getnextslot call during logical decoding");
1065 
1066  return sscan->rs_rd->rd_tableam->scan_getnextslot(sscan, direction, slot);
1067 }
@ BackwardScanDirection
Definition: sdir.h:26
@ ForwardScanDirection
Definition: sdir.h:28
Oid tts_tableOid
Definition: tuptable.h:130

References Assert(), BackwardScanDirection, bsysscan, CheckXidAlive, elog(), ERROR, ForwardScanDirection, RelationData::rd_tableam, RelationGetRelid, TableScanDescData::rs_rd, TableAmRoutine::scan_getnextslot, TransactionIdIsValid, TupleTableSlot::tts_tableOid, and unlikely.

Referenced by AlterDomainNotNull(), ATRewriteTable(), check_default_partition_contents(), DoCopyTo(), heapam_relation_copy_for_cluster(), IndexCheckExclusion(), RelationFindReplTupleSeq(), SeqNext(), systable_getnext(), validateDomainConstraint(), and validateForeignKeyConstraint().

◆ table_scan_getnextslot_tidrange()

static bool table_scan_getnextslot_tidrange ( TableScanDesc  sscan,
ScanDirection  direction,
TupleTableSlot slot 
)
inlinestatic

Definition at line 1116 of file tableam.h.

1118 {
1119  /* Ensure table_beginscan_tidrange() was used. */
1120  Assert((sscan->rs_flags & SO_TYPE_TIDRANGESCAN) != 0);
1121 
1122  /* We don't expect actual scans using NoMovementScanDirection */
1123  Assert(direction == ForwardScanDirection ||
1124  direction == BackwardScanDirection);
1125 
1126  return sscan->rs_rd->rd_tableam->scan_getnextslot_tidrange(sscan,
1127  direction,
1128  slot);
1129 }
bool(* scan_getnextslot_tidrange)(TableScanDesc scan, ScanDirection direction, TupleTableSlot *slot)
Definition: tableam.h:372

References Assert(), BackwardScanDirection, ForwardScanDirection, RelationData::rd_tableam, TableScanDescData::rs_flags, TableScanDescData::rs_rd, TableAmRoutine::scan_getnextslot_tidrange, and SO_TYPE_TIDRANGESCAN.

Referenced by TidRangeNext().

◆ table_scan_sample_next_block()

static bool table_scan_sample_next_block ( TableScanDesc  scan,
struct SampleScanState scanstate 
)
inlinestatic

Definition at line 2009 of file tableam.h.

2011 {
2012  /*
2013  * We don't expect direct calls to table_scan_sample_next_block with valid
2014  * CheckXidAlive for catalog or regular tables. See detailed comments in
2015  * xact.c where these variables are declared.
2016  */
2018  elog(ERROR, "unexpected table_scan_sample_next_block call during logical decoding");
2019  return scan->rs_rd->rd_tableam->scan_sample_next_block(scan, scanstate);
2020 }

References bsysscan, CheckXidAlive, elog(), ERROR, RelationData::rd_tableam, TableScanDescData::rs_rd, TableAmRoutine::scan_sample_next_block, TransactionIdIsValid, and unlikely.

Referenced by tablesample_getnext().

◆ table_scan_sample_next_tuple()

static bool table_scan_sample_next_tuple ( TableScanDesc  scan,
struct SampleScanState scanstate,
TupleTableSlot slot 
)
inlinestatic

Definition at line 2031 of file tableam.h.

2034 {
2035  /*
2036  * We don't expect direct calls to table_scan_sample_next_tuple with valid
2037  * CheckXidAlive for catalog or regular tables. See detailed comments in
2038  * xact.c where these variables are declared.
2039  */
2041  elog(ERROR, "unexpected table_scan_sample_next_tuple call during logical decoding");
2042  return scan->rs_rd->rd_tableam->scan_sample_next_tuple(scan, scanstate,
2043  slot);
2044 }

References bsysscan, CheckXidAlive, elog(), ERROR, RelationData::rd_tableam, TableScanDescData::rs_rd, TableAmRoutine::scan_sample_next_tuple, TransactionIdIsValid, and unlikely.

Referenced by tablesample_getnext().

◆ table_scan_update_snapshot()

void table_scan_update_snapshot ( TableScanDesc  scan,
Snapshot  snapshot 
)

Definition at line 124 of file tableam.c.

125 {
126  Assert(IsMVCCSnapshot(snapshot));
127 
128  RegisterSnapshot(snapshot);
129  scan->rs_snapshot = snapshot;
130  scan->rs_flags |= SO_TEMP_SNAPSHOT;
131 }
struct SnapshotData * rs_snapshot
Definition: relscan.h:35

References Assert(), IsMVCCSnapshot, RegisterSnapshot(), TableScanDescData::rs_flags, TableScanDescData::rs_snapshot, and SO_TEMP_SNAPSHOT.

Referenced by ExecBitmapHeapInitializeWorker().

◆ table_slot_callbacks()

const TupleTableSlotOps* table_slot_callbacks ( Relation  relation)

Definition at line 58 of file tableam.c.

59 {
60  const TupleTableSlotOps *tts_cb;
61 
62  if (relation->rd_tableam)
63  tts_cb = relation->rd_tableam->slot_callbacks(relation);
64  else if (relation->rd_rel->relkind == RELKIND_FOREIGN_TABLE)
65  {
66  /*
67  * Historically FDWs expect to store heap tuples in slots. Continue
68  * handing them one, to make it less painful to adapt FDWs to new
69  * versions. The cost of a heap slot over a virtual slot is pretty
70  * small.
71  */
72  tts_cb = &TTSOpsHeapTuple;
73  }
74  else
75  {
76  /*
77  * These need to be supported, as some parts of the code (like COPY)
78  * need to create slots for such relations too. It seems better to
79  * centralize the knowledge that a heap slot is the right thing in
80  * that case here.
81  */
82  Assert(relation->rd_rel->relkind == RELKIND_VIEW ||
83  relation->rd_rel->relkind == RELKIND_PARTITIONED_TABLE);
84  tts_cb = &TTSOpsVirtual;
85  }
86 
87  return tts_cb;
88 }
const TupleTableSlotOps TTSOpsVirtual
Definition: execTuples.c:83
const TupleTableSlotOps TTSOpsHeapTuple
Definition: execTuples.c:84
const TupleTableSlotOps *(* slot_callbacks)(Relation rel)
Definition: tableam.h:296

References Assert(), RelationData::rd_rel, RelationData::rd_tableam, TableAmRoutine::slot_callbacks, TTSOpsHeapTuple, and TTSOpsVirtual.

Referenced by ATRewriteTable(), ExecGetReturningSlot(), ExecGetTriggerNewSlot(), ExecGetTriggerOldSlot(), ExecInitBitmapHeapScan(), ExecInitIndexOnlyScan(), ExecInitIndexScan(), ExecInitSampleScan(), ExecInitSeqScan(), ExecInitTidRangeScan(), ExecInitTidScan(), and table_slot_create().

◆ table_slot_create()

TupleTableSlot* table_slot_create ( Relation  relation,
List **  reglist 
)

Definition at line 91 of file tableam.c.

92 {
93  const TupleTableSlotOps *tts_cb;
94  TupleTableSlot *slot;
95 
96  tts_cb = table_slot_callbacks(relation);
97  slot = MakeSingleTupleTableSlot(RelationGetDescr(relation), tts_cb);
98 
99  if (reglist)
100  *reglist = lappend(*reglist, slot);
101 
102  return slot;
103 }
TupleTableSlot * MakeSingleTupleTableSlot(TupleDesc tupdesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1237
List * lappend(List *list, void *datum)
Definition: list.c:338
#define RelationGetDescr(relation)
Definition: rel.h:530
const TupleTableSlotOps * table_slot_callbacks(Relation relation)
Definition: tableam.c:58

References lappend(), MakeSingleTupleTableSlot(), RelationGetDescr, and table_slot_callbacks().

Referenced by acquire_sample_rows(), AlterDomainNotNull(), apply_handle_tuple_routing(), check_default_partition_contents(), check_exclusion_or_unique_constraint(), CopyFrom(), CopyMultiInsertInfoNextFreeSlot(), DoCopyTo(), EvalPlanQualSlot(), ExecCrossPartitionUpdate(), ExecInitInsertProjection(), ExecInitMerge(), ExecInitMergeTupleSlots(), ExecInitModifyTable(), ExecInitPartitionInfo(), ExecInitRoutingInfo(), ExecInitUpdateProjection(), FindReplTupleInLocalRel(), get_actual_variable_range(), heap_entry_is_visible(), heapam_index_build_range_scan(), heapam_relation_copy_for_cluster(), IndexCheckExclusion(), RelationFindReplTupleSeq(), systable_beginscan(), systable_beginscan_ordered(), table_index_fetch_tuple_check(), validateDomainConstraint(), and validateForeignKeyConstraint().

◆ table_tuple_complete_speculative()

static void table_tuple_complete_speculative ( Relation  rel,
TupleTableSlot slot,
uint32  specToken,
bool  succeeded 
)
inlinestatic

Definition at line 1430 of file tableam.h.

1432 {
1433  rel->rd_tableam->tuple_complete_speculative(rel, slot, specToken,
1434  succeeded);
1435 }

References RelationData::rd_tableam, and TableAmRoutine::tuple_complete_speculative.

Referenced by ExecInsert().

◆ table_tuple_delete()

static TM_Result table_tuple_delete ( Relation  rel,
ItemPointer  tid,
CommandId  cid,
Snapshot  snapshot,
Snapshot  crosscheck,
bool  wait,
TM_FailureData tmfd,
bool  changingPart 
)
inlinestatic

Definition at line 1486 of file tableam.h.

1489 {
1490  return rel->rd_tableam->tuple_delete(rel, tid, cid,
1491  snapshot, crosscheck,
1492  wait, tmfd, changingPart);
1493 }

References RelationData::rd_tableam, and TableAmRoutine::tuple_delete.

Referenced by ExecDeleteAct(), and simple_table_tuple_delete().

◆ table_tuple_fetch_row_version()

static bool table_tuple_fetch_row_version ( Relation  rel,
ItemPointer  tid,
Snapshot  snapshot,
TupleTableSlot slot 
)
inlinestatic

Definition at line 1283 of file tableam.h.

1287 {
1288  /*
1289  * We don't expect direct calls to table_tuple_fetch_row_version with
1290  * valid CheckXidAlive for catalog or regular tables. See detailed
1291  * comments in xact.c where these variables are declared.
1292  */
1294  elog(ERROR, "unexpected table_tuple_fetch_row_version call during logical decoding");
1295 
1296  return rel->rd_tableam->tuple_fetch_row_version(rel, tid, snapshot, slot);
1297 }

References bsysscan, CheckXidAlive, elog(), ERROR, RelationData::rd_tableam, TransactionIdIsValid, TableAmRoutine::tuple_fetch_row_version, and unlikely.

Referenced by AfterTriggerExecute(), EvalPlanQualFetchRowMark(), ExecCheckTIDVisible(), ExecCrossPartitionUpdate(), ExecDelete(), ExecMergeMatched(), ExecModifyTable(), ExecUpdate(), GetTupleForTrigger(), heap_entry_is_visible(), and TidNext().

◆ table_tuple_get_latest_tid()

void table_tuple_get_latest_tid ( TableScanDesc  scan,
ItemPointer  tid 
)

Definition at line 245 of file tableam.c.

246 {
247  Relation rel = scan->rs_rd;
248  const TableAmRoutine *tableam = rel->rd_tableam;
249 
250  /*
251  * We don't expect direct calls to table_tuple_get_latest_tid with valid
252  * CheckXidAlive for catalog or regular tables. See detailed comments in
253  * xact.c where these variables are declared.
254  */
256  elog(ERROR, "unexpected table_tuple_get_latest_tid call during logical decoding");
257 
258  /*
259  * Since this can be called with user-supplied TID, don't trust the input
260  * too much.
261  */
262  if (!tableam->tuple_tid_valid(scan, tid))
263  ereport(ERROR,
264  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
265  errmsg("tid (%u, %u) is not valid for relation \"%s\"",
268  RelationGetRelationName(rel))));
269 
270  tableam->tuple_get_latest_tid(scan, tid);
271 }
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ereport(elevel,...)
Definition: elog.h:149
static OffsetNumber ItemPointerGetOffsetNumberNoCheck(const ItemPointerData *pointer)
Definition: itemptr.h:114
static BlockNumber ItemPointerGetBlockNumberNoCheck(const ItemPointerData *pointer)
Definition: itemptr.h:93
#define RelationGetRelationName(relation)
Definition: rel.h:538

References bsysscan, CheckXidAlive, elog(), ereport, errcode(), errmsg(), ERROR, ItemPointerGetBlockNumberNoCheck(), ItemPointerGetOffsetNumberNoCheck(), RelationData::rd_tableam, RelationGetRelationName, TableScanDescData::rs_rd, TransactionIdIsValid, TableAmRoutine::tuple_get_latest_tid, TableAmRoutine::tuple_tid_valid, and unlikely.

Referenced by currtid_internal(), and TidNext().

◆ table_tuple_insert()

static void table_tuple_insert ( Relation  rel,
TupleTableSlot slot,
CommandId  cid,
int  options,
struct BulkInsertStateData bistate 
)
inlinestatic

Definition at line 1397 of file tableam.h.

1399 {
1400  rel->rd_tableam->tuple_insert(rel, slot, cid, options,
1401  bistate);
1402 }

References RelationData::rd_tableam, and TableAmRoutine::tuple_insert.

Referenced by ATRewriteTable(), CopyFrom(), ExecInsert(), intorel_receive(), simple_table_tuple_insert(), and transientrel_receive().

◆ table_tuple_insert_speculative()

static void table_tuple_insert_speculative ( Relation  rel,
TupleTableSlot slot,
CommandId  cid,
int  options,
struct BulkInsertStateData bistate,
uint32  specToken 
)
inlinestatic

Definition at line 1416 of file tableam.h.

1420 {
1421  rel->rd_tableam->tuple_insert_speculative(rel, slot, cid, options,
1422  bistate, specToken);
1423 }

References RelationData::rd_tableam, and TableAmRoutine::tuple_insert_speculative.

Referenced by ExecInsert().

◆ table_tuple_lock()

static TM_Result table_tuple_lock ( Relation  rel,
ItemPointer  tid,
Snapshot  snapshot,
TupleTableSlot slot,
CommandId  cid,
LockTupleMode  mode,
LockWaitPolicy  wait_policy,
uint8  flags,
TM_FailureData tmfd 
)
inlinestatic

Definition at line 1575 of file tableam.h.

1579 {
1580  return rel->rd_tableam->tuple_lock(rel, tid, snapshot, slot,
1581  cid, mode, wait_policy,
1582  flags, tmfd);
1583 }
static PgChecksumMode mode
Definition: pg_checksums.c:56

References mode, RelationData::rd_tableam, and TableAmRoutine::tuple_lock.

Referenced by ExecDelete(), ExecLockRows(), ExecMergeMatched(), ExecOnConflictUpdate(), ExecUpdate(), GetTupleForTrigger(), RelationFindReplTupleByIndex(), and RelationFindReplTupleSeq().

◆ table_tuple_satisfies_snapshot()

static bool table_tuple_satisfies_snapshot ( Relation  rel,
TupleTableSlot slot,
Snapshot  snapshot 
)
inlinestatic

Definition at line 1330 of file tableam.h.

1332 {
1333  return rel->rd_tableam->tuple_satisfies_snapshot(rel, slot, snapshot);
1334 }

References RelationData::rd_tableam, and TableAmRoutine::tuple_satisfies_snapshot.

Referenced by ExecCheckTupleVisible(), RI_FKey_check(), and systable_recheck_tuple().

◆ table_tuple_tid_valid()

static bool table_tuple_tid_valid ( TableScanDesc  scan,
ItemPointer  tid 
)
inlinestatic

Definition at line 1309 of file tableam.h.

1310 {
1311  return scan->rs_rd->rd_tableam->tuple_tid_valid(scan, tid);
1312 }

References RelationData::rd_tableam, TableScanDescData::rs_rd, and TableAmRoutine::tuple_tid_valid.

Referenced by TidListEval().

◆ table_tuple_update()

static TM_Result table_tuple_update ( Relation  rel,
ItemPointer  otid,
TupleTableSlot slot,
CommandId  cid,
Snapshot  snapshot,
Snapshot  crosscheck,
bool  wait,
TM_FailureData tmfd,
LockTupleMode lockmode,
TU_UpdateIndexes update_indexes 
)
inlinestatic

Definition at line 1530 of file tableam.h.

1534 {
1535  return rel->rd_tableam->tuple_update(rel, otid, slot,
1536  cid, snapshot, crosscheck,
1537  wait, tmfd,
1538  lockmode, update_indexes);
1539 }

References RelationData::rd_tableam, and TableAmRoutine::tuple_update.

Referenced by ExecUpdateAct(), and simple_table_tuple_update().

Variable Documentation

◆ default_table_access_method

PGDLLIMPORT char* default_table_access_method
extern

Definition at line 48 of file tableam.c.

Referenced by DefineRelation().

◆ synchronize_seqscans

PGDLLIMPORT bool synchronize_seqscans
extern

Definition at line 49 of file tableam.c.

Referenced by initscan(), and table_block_parallelscan_initialize().