PostgreSQL Source Code git master
Loading...
Searching...
No Matches
genam.c
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * genam.c
4 * general index access method routines
5 *
6 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
8 *
9 *
10 * IDENTIFICATION
11 * src/backend/access/index/genam.c
12 *
13 * NOTES
14 * many of the old access method routines have been turned into
15 * macros and moved to genam.h -cim 4/30/91
16 *
17 *-------------------------------------------------------------------------
18 */
19
20#include "postgres.h"
21
22#include "access/genam.h"
23#include "access/heapam.h"
24#include "access/relscan.h"
25#include "access/tableam.h"
26#include "access/transam.h"
27#include "catalog/index.h"
28#include "lib/stringinfo.h"
29#include "miscadmin.h"
30#include "storage/bufmgr.h"
31#include "storage/procarray.h"
32#include "utils/acl.h"
34#include "utils/lsyscache.h"
35#include "utils/rel.h"
36#include "utils/rls.h"
37#include "utils/ruleutils.h"
38#include "utils/snapmgr.h"
39
40
41/* ----------------------------------------------------------------
42 * general access method routines
43 *
44 * All indexed access methods use an identical scan structure.
45 * We don't know how the various AMs do locking, however, so we don't
46 * do anything about that here.
47 *
48 * The intent is that an AM implementor will define a beginscan routine
49 * that calls RelationGetIndexScan, to fill in the scan, and then does
50 * whatever kind of locking he wants.
51 *
52 * At the end of a scan, the AM's endscan routine undoes the locking,
53 * but does *not* call IndexScanEnd --- the higher-level index_endscan
54 * routine does that. (We can't do it in the AM because index_endscan
55 * still needs to touch the IndexScanDesc after calling the AM.)
56 *
57 * Because of this, the AM does not have a choice whether to call
58 * RelationGetIndexScan or not; its beginscan routine must return an
59 * object made by RelationGetIndexScan. This is kinda ugly but not
60 * worth cleaning up now.
61 * ----------------------------------------------------------------
62 */
63
64/* ----------------
65 * RelationGetIndexScan -- Create and fill an IndexScanDesc.
66 *
67 * This routine creates an index scan structure and sets up initial
68 * contents for it.
69 *
70 * Parameters:
71 * indexRelation -- index relation for scan.
72 * nkeys -- count of scan keys (index qual conditions).
73 * norderbys -- count of index order-by operators.
74 *
75 * Returns:
76 * An initialized IndexScanDesc.
77 * ----------------
78 */
80RelationGetIndexScan(Relation indexRelation, int nkeys, int norderbys)
81{
82 IndexScanDesc scan;
83
85
86 scan->heapRelation = NULL; /* may be set later */
87 scan->xs_heapfetch = NULL;
88 scan->indexRelation = indexRelation;
89 scan->xs_snapshot = InvalidSnapshot; /* caller must initialize this */
90 scan->numberOfKeys = nkeys;
91 scan->numberOfOrderBys = norderbys;
92
93 /*
94 * We allocate key workspace here, but it won't get filled until amrescan.
95 */
96 if (nkeys > 0)
97 scan->keyData = palloc_array(ScanKeyData, nkeys);
98 else
99 scan->keyData = NULL;
100 if (norderbys > 0)
101 scan->orderByData = palloc_array(ScanKeyData, norderbys);
102 else
103 scan->orderByData = NULL;
104
105 scan->xs_want_itup = false; /* may be set later */
106
107 /*
108 * During recovery we ignore killed tuples and don't bother to kill them
109 * either. We do this because the xmin on the primary node could easily be
110 * later than the xmin on the standby node, so that what the primary
111 * thinks is killed is supposed to be visible on standby. So for correct
112 * MVCC for queries during recovery we must ignore these hints and check
113 * all tuples. Do *not* set ignore_killed_tuples to true when running in a
114 * transaction that was started during recovery. xactStartedInRecovery
115 * should not be altered by index AMs.
116 */
117 scan->kill_prior_tuple = false;
120
121 scan->opaque = NULL;
122 scan->instrument = NULL;
123
124 scan->xs_itup = NULL;
125 scan->xs_itupdesc = NULL;
126 scan->xs_hitup = NULL;
127 scan->xs_hitupdesc = NULL;
128
129 return scan;
130}
131
132/* ----------------
133 * IndexScanEnd -- End an index scan.
134 *
135 * This routine just releases the storage acquired by
136 * RelationGetIndexScan(). Any AM-level resources are
137 * assumed to already have been released by the AM's
138 * endscan routine.
139 *
140 * Returns:
141 * None.
142 * ----------------
143 */
144void
146{
147 if (scan->keyData != NULL)
148 pfree(scan->keyData);
149 if (scan->orderByData != NULL)
150 pfree(scan->orderByData);
151
152 pfree(scan);
153}
154
155/*
156 * BuildIndexValueDescription
157 *
158 * Construct a string describing the contents of an index entry, in the
159 * form "(key_name, ...)=(key_value, ...)". This is currently used
160 * for building unique-constraint, exclusion-constraint error messages, and
161 * logical replication conflict error messages so only key columns of the index
162 * are checked and printed.
163 *
164 * Note that if the user does not have permissions to view all of the
165 * columns involved then a NULL is returned. Returning a partial key seems
166 * unlikely to be useful and we have no way to know which of the columns the
167 * user provided (unlike in ExecBuildSlotValueDescription).
168 *
169 * The passed-in values/nulls arrays are the "raw" input to the index AM,
170 * e.g. results of FormIndexDatum --- this is not necessarily what is stored
171 * in the index, but it's what the user perceives to be stored.
172 *
173 * Note: if you change anything here, check whether
174 * ExecBuildSlotPartitionKeyDescription() in execMain.c needs a similar
175 * change.
176 */
177char *
179 const Datum *values, const bool *isnull)
180{
183 int indnkeyatts;
184 int i;
185 int keyno;
186 Oid indexrelid = RelationGetRelid(indexRelation);
189
191
192 /*
193 * Check permissions- if the user does not have access to view all of the
194 * key columns then return NULL to avoid leaking data.
195 *
196 * First check if RLS is enabled for the relation. If so, return NULL to
197 * avoid leaking data.
198 *
199 * Next we need to check table-level SELECT access and then, if there is
200 * no access there, check column-level permissions.
201 */
202 idxrec = indexRelation->rd_index;
203 indrelid = idxrec->indrelid;
204 Assert(indexrelid == idxrec->indexrelid);
205
206 /* RLS check- if RLS is enabled then we don't return anything. */
208 return NULL;
209
210 /* Table-level SELECT is enough, if the user has it */
212 if (aclresult != ACLCHECK_OK)
213 {
214 /*
215 * No table-level access, so step through the columns in the index and
216 * make sure the user has SELECT rights on all of them.
217 */
218 for (keyno = 0; keyno < indnkeyatts; keyno++)
219 {
220 AttrNumber attnum = idxrec->indkey.values[keyno];
221
222 /*
223 * Note that if attnum == InvalidAttrNumber, then this is an index
224 * based on an expression and we return no detail rather than try
225 * to figure out what column(s) the expression includes and if the
226 * user has SELECT rights on them.
227 */
228 if (attnum == InvalidAttrNumber ||
231 {
232 /* No access, so clean up and return */
233 return NULL;
234 }
235 }
236 }
237
239 appendStringInfo(&buf, "(%s)=(",
240 pg_get_indexdef_columns(indexrelid, true));
241
242 for (i = 0; i < indnkeyatts; i++)
243 {
244 char *val;
245
246 if (isnull[i])
247 val = "null";
248 else
249 {
250 Oid foutoid;
251 bool typisvarlena;
252
253 /*
254 * The provided data is not necessarily of the type stored in the
255 * index; rather it is of the index opclass's input type. So look
256 * at rd_opcintype not the index tupdesc.
257 *
258 * Note: this is a bit shaky for opclasses that have pseudotype
259 * input types such as ANYARRAY or RECORD. Currently, the
260 * typoutput functions associated with the pseudotypes will work
261 * okay, but we might have to try harder in future.
262 */
263 getTypeOutputInfo(indexRelation->rd_opcintype[i],
264 &foutoid, &typisvarlena);
266 }
267
268 if (i > 0)
271 }
272
274
275 return buf.data;
276}
277
278/*
279 * Get the snapshotConflictHorizon from the table entries pointed to by the
280 * index tuples being deleted using an AM-generic approach.
281 *
282 * This is a table_index_delete_tuples() shim used by index AMs that only need
283 * to consult the tableam to get a snapshotConflictHorizon value, and only
284 * expect to delete index tuples that are already known deletable (typically
285 * due to having LP_DEAD bits set). When a snapshotConflictHorizon value
286 * isn't needed in index AM's deletion WAL record, it is safe for it to skip
287 * calling here entirely.
288 *
289 * We assume that caller index AM uses the standard IndexTuple representation,
290 * with table TIDs stored in the t_tid field. We also expect (and assert)
291 * that the line pointers on page for 'itemnos' offsets are already marked
292 * LP_DEAD.
293 */
297 Buffer ibuf,
299 int nitems)
300{
302 TransactionId snapshotConflictHorizon = InvalidTransactionId;
304 IndexTuple itup;
305
306 Assert(nitems > 0);
307
308 delstate.irel = irel;
310 delstate.bottomup = false;
311 delstate.bottomupfreespace = 0;
312 delstate.ndeltids = 0;
315
316 /* identify what the index tuples about to be deleted point to */
317 for (int i = 0; i < nitems; i++)
318 {
319 OffsetNumber offnum = itemnos[i];
321
322 iitemid = PageGetItemId(ipage, offnum);
324
326
327 ItemPointerCopy(&itup->t_tid, &delstate.deltids[i].tid);
328 delstate.deltids[i].id = delstate.ndeltids;
329 delstate.status[i].idxoffnum = offnum;
330 delstate.status[i].knowndeletable = true; /* LP_DEAD-marked */
331 delstate.status[i].promising = false; /* unused */
332 delstate.status[i].freespace = 0; /* unused */
333
334 delstate.ndeltids++;
335 }
336
337 /* determine the actual xid horizon */
338 snapshotConflictHorizon = table_index_delete_tuples(hrel, &delstate);
339
340 /* assert tableam agrees that all items are deletable */
341 Assert(delstate.ndeltids == nitems);
342
343 pfree(delstate.deltids);
344 pfree(delstate.status);
345
346 return snapshotConflictHorizon;
347}
348
349
350/* ----------------------------------------------------------------
351 * heap-or-index-scan access to system catalogs
352 *
353 * These functions support system catalog accesses that normally use
354 * an index but need to be capable of being switched to heap scans
355 * if the system indexes are unavailable.
356 *
357 * The specified scan keys must be compatible with the named index.
358 * Generally this means that they must constrain either all columns
359 * of the index, or the first K columns of an N-column index.
360 *
361 * These routines could work with non-system tables, actually,
362 * but they're only useful when there is a known index to use with
363 * the given scan keys; so in practice they're only good for
364 * predetermined types of scans of system catalogs.
365 * ----------------------------------------------------------------
366 */
367
368/*
369 * systable_beginscan --- set up for heap-or-index scan
370 *
371 * rel: catalog to scan, already opened and suitably locked
372 * indexId: OID of index to conditionally use
373 * indexOK: if false, forces a heap scan (see notes below)
374 * snapshot: time qual to use (NULL for a recent catalog snapshot)
375 * nkeys, key: scan keys
376 *
377 * The attribute numbers in the scan key should be set for the heap case.
378 * If we choose to index, we convert them to 1..n to reference the index
379 * columns. Note this means there must be one scankey qualification per
380 * index column! This is checked by the Asserts in the normal, index-using
381 * case, but won't be checked if the heapscan path is taken.
382 *
383 * The routine checks the normal cases for whether an indexscan is safe,
384 * but caller can make additional checks and pass indexOK=false if needed.
385 * In standard case indexOK can simply be constant TRUE.
386 */
389 Oid indexId,
390 bool indexOK,
391 Snapshot snapshot,
392 int nkeys, ScanKey key)
393{
395 Relation irel;
396
397 /*
398 * If this backend promised that it won't access shared catalogs during
399 * logical decoding, this it the right place to verify.
400 */
403 !heapRelation->rd_rel->relisshared);
404
405 if (indexOK &&
409 else
410 irel = NULL;
411
413
414 sysscan->heap_rel = heapRelation;
415 sysscan->irel = irel;
416 sysscan->slot = table_slot_create(heapRelation, NULL);
417
418 if (snapshot == NULL)
419 {
420 Oid relid = RelationGetRelid(heapRelation);
421
422 snapshot = RegisterSnapshot(GetCatalogSnapshot(relid));
423 sysscan->snapshot = snapshot;
424 }
425 else
426 {
427 /* Caller is responsible for any snapshot. */
428 sysscan->snapshot = NULL;
429 }
430
431 /*
432 * If CheckXidAlive is set then set a flag to indicate that system table
433 * scan is in-progress. See detailed comments in xact.c where these
434 * variables are declared.
435 */
437 bsysscan = true;
438
439 if (irel)
440 {
441 int i;
443
445
446 /* Convert attribute numbers to be index column numbers. */
447 for (i = 0; i < nkeys; i++)
448 {
449 int j;
450
451 memcpy(&idxkey[i], &key[i], sizeof(ScanKeyData));
452
453 for (j = 0; j < IndexRelationGetNumberOfAttributes(irel); j++)
454 {
455 if (key[i].sk_attno == irel->rd_index->indkey.values[j])
456 {
457 idxkey[i].sk_attno = j + 1;
458 break;
459 }
460 }
462 elog(ERROR, "column is not in index");
463 }
464
465 sysscan->iscan = index_beginscan(heapRelation, irel,
466 snapshot, NULL, nkeys, 0,
467 SO_NONE);
468 index_rescan(sysscan->iscan, idxkey, nkeys, NULL, 0);
469 sysscan->scan = NULL;
470
471 pfree(idxkey);
472 }
473 else
474 {
475 /*
476 * We disallow synchronized scans when forced to use a heapscan on a
477 * catalog. In most cases the desired rows are near the front, so
478 * that the unpredictable start point of a syncscan is a serious
479 * disadvantage; and there are no compensating advantages, because
480 * it's unlikely that such scans will occur in parallel.
481 */
482 sysscan->scan = table_beginscan_strat(heapRelation, snapshot,
483 nkeys, key,
484 true, false);
485 sysscan->iscan = NULL;
486 }
487
488 return sysscan;
489}
490
491/*
492 * HandleConcurrentAbort - Handle concurrent abort of the CheckXidAlive.
493 *
494 * Error out, if CheckXidAlive is aborted. We can't directly use
495 * TransactionIdDidAbort as after crash such transaction might not have been
496 * marked as aborted. See detailed comments in xact.c where the variable
497 * is declared.
498 */
499static inline void
501{
507 errmsg("transaction aborted during system catalog scan")));
508}
509
510/*
511 * systable_getnext --- get next tuple in a heap-or-index scan
512 *
513 * Returns NULL if no more tuples available.
514 *
515 * Note that returned tuple is a reference to data in a disk buffer;
516 * it must not be modified, and should be presumed inaccessible after
517 * next getnext() or endscan() call.
518 *
519 * XXX: It'd probably make sense to offer a slot based interface, at least
520 * optionally.
521 */
524{
525 HeapTuple htup = NULL;
526
527 if (sysscan->irel)
528 {
530 {
531 bool shouldFree;
532
533 htup = ExecFetchSlotHeapTuple(sysscan->slot, false, &shouldFree);
535
536 /*
537 * We currently don't need to support lossy index operators for
538 * any system catalog scan. It could be done here, using the scan
539 * keys to drive the operator calls, if we arranged to save the
540 * heap attnums during systable_beginscan(); this is practical
541 * because we still wouldn't need to support indexes on
542 * expressions.
543 */
544 if (sysscan->iscan->xs_recheck)
545 elog(ERROR, "system catalog scans with lossy index conditions are not implemented");
546 }
547 }
548 else
549 {
551 {
552 bool shouldFree;
553
554 htup = ExecFetchSlotHeapTuple(sysscan->slot, false, &shouldFree);
556 }
557 }
558
559 /*
560 * Handle the concurrent abort while fetching the catalog tuple during
561 * logical streaming of a transaction.
562 */
564
565 return htup;
566}
567
568/*
569 * systable_recheck_tuple --- recheck visibility of most-recently-fetched tuple
570 *
571 * In particular, determine if this tuple would be visible to a catalog scan
572 * that started now. We don't handle the case of a non-MVCC scan snapshot,
573 * because no caller needs that yet.
574 *
575 * This is useful to test whether an object was deleted while we waited to
576 * acquire lock on it.
577 *
578 * Note: we don't actually *need* the tuple to be passed in, but it's a
579 * good crosscheck that the caller is interested in the right tuple.
580 */
581bool
583{
585 bool result;
586
587 Assert(tup == ExecFetchSlotHeapTuple(sysscan->slot, false, NULL));
588
591
593 sysscan->slot,
594 freshsnap);
596
597 /*
598 * Handle the concurrent abort while fetching the catalog tuple during
599 * logical streaming of a transaction.
600 */
602
603 return result;
604}
605
606/*
607 * systable_endscan --- close scan, release resources
608 *
609 * Note that it's still up to the caller to close the heap relation.
610 */
611void
613{
614 if (sysscan->slot)
615 {
617 sysscan->slot = NULL;
618 }
619
620 if (sysscan->irel)
621 {
622 index_endscan(sysscan->iscan);
624 }
625 else
626 table_endscan(sysscan->scan);
627
628 if (sysscan->snapshot)
629 UnregisterSnapshot(sysscan->snapshot);
630
631 /*
632 * Reset the bsysscan flag at the end of the systable scan. See detailed
633 * comments in xact.c where these variables are declared.
634 */
636 bsysscan = false;
637
638 pfree(sysscan);
639}
640
641
642/*
643 * systable_beginscan_ordered --- set up for ordered catalog scan
644 *
645 * These routines have essentially the same API as systable_beginscan etc,
646 * except that they guarantee to return multiple matching tuples in
647 * index order. Also, for largely historical reasons, the index to use
648 * is opened and locked by the caller, not here.
649 *
650 * Currently we do not support non-index-based scans here. (In principle
651 * we could do a heapscan and sort, but the uses are in places that
652 * probably don't need to still work with corrupted catalog indexes.)
653 * For the moment, therefore, these functions are merely the thinest of
654 * wrappers around index_beginscan/index_getnext_slot. The main reason for
655 * their existence is to centralize possible future support of lossy operators
656 * in catalog scans.
657 */
660 Relation indexRelation,
661 Snapshot snapshot,
662 int nkeys, ScanKey key)
663{
665 int i;
667
668 /* REINDEX can probably be a hard error here ... */
669 if (ReindexIsProcessingIndex(RelationGetRelid(indexRelation)))
672 errmsg("cannot access index \"%s\" while it is being reindexed",
673 RelationGetRelationName(indexRelation))));
674 /* ... but we only throw a warning about violating IgnoreSystemIndexes */
676 elog(WARNING, "using index \"%s\" despite IgnoreSystemIndexes",
677 RelationGetRelationName(indexRelation));
678
680
681 sysscan->heap_rel = heapRelation;
682 sysscan->irel = indexRelation;
683 sysscan->slot = table_slot_create(heapRelation, NULL);
684
685 if (snapshot == NULL)
686 {
687 Oid relid = RelationGetRelid(heapRelation);
688
689 snapshot = RegisterSnapshot(GetCatalogSnapshot(relid));
690 sysscan->snapshot = snapshot;
691 }
692 else
693 {
694 /* Caller is responsible for any snapshot. */
695 sysscan->snapshot = NULL;
696 }
697
699
700 /* Convert attribute numbers to be index column numbers. */
701 for (i = 0; i < nkeys; i++)
702 {
703 int j;
704
705 memcpy(&idxkey[i], &key[i], sizeof(ScanKeyData));
706
707 for (j = 0; j < IndexRelationGetNumberOfAttributes(indexRelation); j++)
708 {
709 if (key[i].sk_attno == indexRelation->rd_index->indkey.values[j])
710 {
711 idxkey[i].sk_attno = j + 1;
712 break;
713 }
714 }
715 if (j == IndexRelationGetNumberOfAttributes(indexRelation))
716 elog(ERROR, "column is not in index");
717 }
718
719 /*
720 * If CheckXidAlive is set then set a flag to indicate that system table
721 * scan is in-progress. See detailed comments in xact.c where these
722 * variables are declared.
723 */
725 bsysscan = true;
726
727 sysscan->iscan = index_beginscan(heapRelation, indexRelation,
728 snapshot, NULL, nkeys, 0,
729 SO_NONE);
730 index_rescan(sysscan->iscan, idxkey, nkeys, NULL, 0);
731 sysscan->scan = NULL;
732
733 pfree(idxkey);
734
735 return sysscan;
736}
737
738/*
739 * systable_getnext_ordered --- get next tuple in an ordered catalog scan
740 */
743{
744 HeapTuple htup = NULL;
745
746 Assert(sysscan->irel);
747 if (index_getnext_slot(sysscan->iscan, direction, sysscan->slot))
748 htup = ExecFetchSlotHeapTuple(sysscan->slot, false, NULL);
749
750 /* See notes in systable_getnext */
751 if (htup && sysscan->iscan->xs_recheck)
752 elog(ERROR, "system catalog scans with lossy index conditions are not implemented");
753
754 /*
755 * Handle the concurrent abort while fetching the catalog tuple during
756 * logical streaming of a transaction.
757 */
759
760 return htup;
761}
762
763/*
764 * systable_endscan_ordered --- close scan, release resources
765 */
766void
768{
769 if (sysscan->slot)
770 {
772 sysscan->slot = NULL;
773 }
774
775 Assert(sysscan->irel);
776 index_endscan(sysscan->iscan);
777 if (sysscan->snapshot)
778 UnregisterSnapshot(sysscan->snapshot);
779
780 /*
781 * Reset the bsysscan flag at the end of the systable scan. See detailed
782 * comments in xact.c where these variables are declared.
783 */
785 bsysscan = false;
786
787 pfree(sysscan);
788}
789
790/*
791 * systable_inplace_update_begin --- update a row "in place" (overwrite it)
792 *
793 * Overwriting violates both MVCC and transactional safety, so the uses of
794 * this function in Postgres are extremely limited. This makes no effort to
795 * support updating cache key columns or other indexed columns. Nonetheless
796 * we find some places to use it. See README.tuplock section "Locking to
797 * write inplace-updated tables" and later sections for expectations of
798 * readers and writers of a table that gets inplace updates. Standard flow:
799 *
800 * ... [any slow preparation not requiring oldtup] ...
801 * systable_inplace_update_begin([...], &tup, &inplace_state);
802 * if (!HeapTupleIsValid(tup))
803 * elog(ERROR, [...]);
804 * ... [buffer is exclusive-locked; mutate "tup"] ...
805 * if (dirty)
806 * systable_inplace_update_finish(inplace_state, tup);
807 * else
808 * systable_inplace_update_cancel(inplace_state);
809 *
810 * The first several params duplicate the systable_beginscan() param list.
811 * "oldtupcopy" is an output parameter, assigned NULL if the key ceases to
812 * find a live tuple. (In PROC_IN_VACUUM, that is a low-probability transient
813 * condition.) If "oldtupcopy" gets non-NULL, you must pass output parameter
814 * "state" to systable_inplace_update_finish() or
815 * systable_inplace_update_cancel().
816 */
817void
819 Oid indexId,
820 bool indexOK,
821 Snapshot snapshot,
822 int nkeys, const ScanKeyData *key,
824 void **state)
825{
826 int retries = 0;
827 SysScanDesc scan;
830
831 /*
832 * For now, we don't allow parallel updates. Unlike a regular update,
833 * this should never create a combo CID, so it might be possible to relax
834 * this restriction, but not without more thought and testing. It's not
835 * clear that it would be useful, anyway.
836 */
837 if (IsInParallelMode())
840 errmsg("cannot update tuples during a parallel operation")));
841
842 /*
843 * Accept a snapshot argument, for symmetry, but this function advances
844 * its snapshot as needed to reach the tail of the updated tuple chain.
845 */
846 Assert(snapshot == NULL);
847
848 Assert(IsInplaceUpdateRelation(relation) || !IsSystemRelation(relation));
849
850 /* Loop for an exclusive-locked buffer of a non-updated tuple. */
851 do
852 {
853 TupleTableSlot *slot;
854
856
857 /*
858 * Processes issuing heap_update (e.g. GRANT) at maximum speed could
859 * drive us to this error. A hostile table owner has stronger ways to
860 * damage their own table, so that's minor.
861 */
862 if (retries++ > 10000)
863 elog(ERROR, "giving up after too many tries to overwrite row");
864
865 INJECTION_POINT("inplace-before-pin", NULL);
866 scan = systable_beginscan(relation, indexId, indexOK, snapshot,
867 nkeys, unconstify(ScanKeyData *, key));
868 oldtup = systable_getnext(scan);
870 {
871 systable_endscan(scan);
872 *oldtupcopy = NULL;
873 return;
874 }
875
876 slot = scan->slot;
879 } while (!heap_inplace_lock(scan->heap_rel,
880 bslot->base.tuple, bslot->buffer,
881 (void (*) (void *)) systable_endscan, scan));
882
884 *state = scan;
885}
886
887/*
888 * systable_inplace_update_finish --- second phase of inplace update
889 *
890 * The tuple cannot change size, and therefore its header fields and null
891 * bitmap (if any) don't change either.
892 */
893void
895{
897 Relation relation = scan->heap_rel;
898 TupleTableSlot *slot = scan->slot;
900 HeapTuple oldtup = bslot->base.tuple;
901 Buffer buffer = bslot->buffer;
902
903 heap_inplace_update_and_unlock(relation, oldtup, tuple, buffer);
904 systable_endscan(scan);
905}
906
907/*
908 * systable_inplace_update_cancel --- abandon inplace update
909 *
910 * This is an alternative to making a no-op update.
911 */
912void
914{
916 Relation relation = scan->heap_rel;
917 TupleTableSlot *slot = scan->slot;
919 HeapTuple oldtup = bslot->base.tuple;
920 Buffer buffer = bslot->buffer;
921
922 heap_inplace_unlock(relation, oldtup, buffer);
923 systable_endscan(scan);
924}
AclResult
Definition acl.h:183
@ ACLCHECK_OK
Definition acl.h:184
AclResult pg_attribute_aclcheck(Oid table_oid, AttrNumber attnum, Oid roleid, AclMode mode)
Definition aclchk.c:3911
AclResult pg_class_aclcheck(Oid table_oid, Oid roleid, AclMode mode)
Definition aclchk.c:4082
int16 AttrNumber
Definition attnum.h:21
#define InvalidAttrNumber
Definition attnum.h:23
static Datum values[MAXATTR]
Definition bootstrap.c:190
int Buffer
Definition buf.h:23
BlockNumber BufferGetBlockNumber(Buffer buffer)
Definition bufmgr.c:4446
static Page BufferGetPage(Buffer buffer)
Definition bufmgr.h:468
static ItemId PageGetItemId(Page page, OffsetNumber offsetNumber)
Definition bufpage.h:268
static void * PageGetItem(PageData *page, const ItemIdData *itemId)
Definition bufpage.h:378
PageData * Page
Definition bufpage.h:81
#define unconstify(underlying_type, expr)
Definition c.h:1325
#define Assert(condition)
Definition c.h:943
uint32 TransactionId
Definition c.h:736
bool IsSystemRelation(Relation relation)
Definition catalog.c:74
bool IsInplaceUpdateRelation(Relation relation)
Definition catalog.c:183
uint32 result
memcpy(sums, checksumBaseOffsets, sizeof(checksumBaseOffsets))
int errcode(int sqlerrcode)
Definition elog.c:874
#define WARNING
Definition elog.h:37
#define ERROR
Definition elog.h:40
#define elog(elevel,...)
Definition elog.h:228
#define ereport(elevel,...)
Definition elog.h:152
void ExecDropSingleTupleTableSlot(TupleTableSlot *slot)
HeapTuple ExecFetchSlotHeapTuple(TupleTableSlot *slot, bool materialize, bool *shouldFree)
#define palloc_object(type)
Definition fe_memutils.h:74
#define palloc_array(type, count)
Definition fe_memutils.h:76
char * OidOutputFunctionCall(Oid functionId, Datum val)
Definition fmgr.c:1764
char * BuildIndexValueDescription(Relation indexRelation, const Datum *values, const bool *isnull)
Definition genam.c:178
void systable_endscan(SysScanDesc sysscan)
Definition genam.c:612
void systable_inplace_update_cancel(void *state)
Definition genam.c:913
static void HandleConcurrentAbort(void)
Definition genam.c:500
bool systable_recheck_tuple(SysScanDesc sysscan, HeapTuple tup)
Definition genam.c:582
void IndexScanEnd(IndexScanDesc scan)
Definition genam.c:145
void systable_inplace_update_begin(Relation relation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, const ScanKeyData *key, HeapTuple *oldtupcopy, void **state)
Definition genam.c:818
TransactionId index_compute_xid_horizon_for_tuples(Relation irel, Relation hrel, Buffer ibuf, OffsetNumber *itemnos, int nitems)
Definition genam.c:295
SysScanDesc systable_beginscan_ordered(Relation heapRelation, Relation indexRelation, Snapshot snapshot, int nkeys, ScanKey key)
Definition genam.c:659
void systable_inplace_update_finish(void *state, HeapTuple tuple)
Definition genam.c:894
HeapTuple systable_getnext(SysScanDesc sysscan)
Definition genam.c:523
void systable_endscan_ordered(SysScanDesc sysscan)
Definition genam.c:767
HeapTuple systable_getnext_ordered(SysScanDesc sysscan, ScanDirection direction)
Definition genam.c:742
SysScanDesc systable_beginscan(Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key)
Definition genam.c:388
IndexScanDesc RelationGetIndexScan(Relation indexRelation, int nkeys, int norderbys)
Definition genam.c:80
struct SysScanDescData * SysScanDesc
Definition genam.h:99
bool heap_inplace_lock(Relation relation, HeapTuple oldtup_ptr, Buffer buffer, void(*release_callback)(void *), void *arg)
Definition heapam.c:6332
void heap_inplace_unlock(Relation relation, HeapTuple oldtup, Buffer buffer)
Definition heapam.c:6610
void heap_inplace_update_and_unlock(Relation relation, HeapTuple oldtup, HeapTuple tuple, Buffer buffer)
Definition heapam.c:6470
HeapTuple heap_copytuple(HeapTuple tuple)
Definition heaptuple.c:686
#define HeapTupleIsValid(tuple)
Definition htup.h:78
#define nitems(x)
Definition indent.h:31
bool ReindexIsProcessingIndex(Oid indexOid)
Definition index.c:4161
bool index_getnext_slot(IndexScanDesc scan, ScanDirection direction, TupleTableSlot *slot)
Definition indexam.c:698
IndexScanDesc index_beginscan(Relation heapRelation, Relation indexRelation, Snapshot snapshot, IndexScanInstrumentation *instrument, int nkeys, int norderbys, uint32 flags)
Definition indexam.c:257
void index_close(Relation relation, LOCKMODE lockmode)
Definition indexam.c:178
void index_endscan(IndexScanDesc scan)
Definition indexam.c:394
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition indexam.c:134
void index_rescan(IndexScanDesc scan, ScanKey keys, int nkeys, ScanKey orderbys, int norderbys)
Definition indexam.c:368
long val
Definition informix.c:689
#define INJECTION_POINT(name, arg)
int j
Definition isn.c:78
int i
Definition isn.c:77
#define ItemIdIsDead(itemId)
Definition itemid.h:113
static void ItemPointerCopy(const ItemPointerData *fromPointer, ItemPointerData *toPointer)
Definition itemptr.h:172
IndexTupleData * IndexTuple
Definition itup.h:53
#define AccessShareLock
Definition lockdefs.h:36
void getTypeOutputInfo(Oid type, Oid *typOutput, bool *typIsVarlena)
Definition lsyscache.c:3129
void pfree(void *pointer)
Definition mcxt.c:1616
#define CHECK_FOR_INTERRUPTS()
Definition miscadmin.h:125
Oid GetUserId(void)
Definition miscinit.c:470
bool IgnoreSystemIndexes
Definition miscinit.c:82
static char * errmsg
uint16 OffsetNumber
Definition off.h:24
#define ACL_SELECT
Definition parsenodes.h:77
int16 attnum
END_CATALOG_STRUCT typedef FormData_pg_index * Form_pg_index
Definition pg_index.h:74
static char buf[DEFAULT_XLOG_SEG_SIZE]
uint64_t Datum
Definition postgres.h:70
#define InvalidOid
unsigned int Oid
static int fb(int x)
bool TransactionIdIsInProgress(TransactionId xid)
Definition procarray.c:1393
#define RelationGetRelid(relation)
Definition rel.h:516
#define RelationGetRelationName(relation)
Definition rel.h:550
#define IndexRelationGetNumberOfAttributes(relation)
Definition rel.h:528
#define IndexRelationGetNumberOfKeyAttributes(relation)
Definition rel.h:535
int check_enable_rls(Oid relid, Oid checkAsUser, bool noError)
Definition rls.c:52
@ RLS_ENABLED
Definition rls.h:45
char * pg_get_indexdef_columns(Oid indexrelid, bool pretty)
Definition ruleutils.c:1246
ScanDirection
Definition sdir.h:25
@ ForwardScanDirection
Definition sdir.h:28
bool accessSharedCatalogsInDecoding
Definition snapbuild.c:163
Snapshot GetCatalogSnapshot(Oid relid)
Definition snapmgr.c:385
void UnregisterSnapshot(Snapshot snapshot)
Definition snapmgr.c:866
bool HistoricSnapshotActive(void)
Definition snapmgr.c:1692
Snapshot RegisterSnapshot(Snapshot snapshot)
Definition snapmgr.c:824
#define InvalidSnapshot
Definition snapshot.h:119
void appendStringInfo(StringInfo str, const char *fmt,...)
Definition stringinfo.c:145
void appendStringInfoString(StringInfo str, const char *s)
Definition stringinfo.c:230
void appendStringInfoChar(StringInfo str, char ch)
Definition stringinfo.c:242
void initStringInfo(StringInfo str)
Definition stringinfo.c:97
struct ScanKeyData * keyData
Definition relscan.h:154
struct ScanKeyData * orderByData
Definition relscan.h:155
HeapTuple xs_hitup
Definition relscan.h:182
bool ignore_killed_tuples
Definition relscan.h:161
IndexFetchTableData * xs_heapfetch
Definition relscan.h:188
bool xactStartedInRecovery
Definition relscan.h:162
struct IndexScanInstrumentation * instrument
Definition relscan.h:172
IndexTuple xs_itup
Definition relscan.h:180
bool kill_prior_tuple
Definition relscan.h:160
struct TupleDescData * xs_hitupdesc
Definition relscan.h:183
struct TupleDescData * xs_itupdesc
Definition relscan.h:181
Relation indexRelation
Definition relscan.h:150
struct SnapshotData * xs_snapshot
Definition relscan.h:151
Relation heapRelation
Definition relscan.h:149
ItemPointerData t_tid
Definition itup.h:37
Oid * rd_opcintype
Definition rel.h:208
Form_pg_index rd_index
Definition rel.h:192
Form_pg_class rd_rel
Definition rel.h:111
Relation heap_rel
Definition relscan.h:221
struct TupleTableSlot * slot
Definition relscan.h:226
TupleTableSlot * table_slot_create(Relation relation, List **reglist)
Definition tableam.c:92
@ SO_NONE
Definition tableam.h:49
static void table_endscan(TableScanDesc scan)
Definition tableam.h:1061
static TableScanDesc table_beginscan_strat(Relation rel, Snapshot snapshot, int nkeys, ScanKeyData *key, bool allow_strat, bool allow_sync)
Definition tableam.h:968
static bool table_scan_getnextslot(TableScanDesc sscan, ScanDirection direction, TupleTableSlot *slot)
Definition tableam.h:1096
static bool table_tuple_satisfies_snapshot(Relation rel, TupleTableSlot *slot, Snapshot snapshot)
Definition tableam.h:1391
static TransactionId table_index_delete_tuples(Relation rel, TM_IndexDeleteOp *delstate)
Definition tableam.h:1412
bool TransactionIdDidCommit(TransactionId transactionId)
Definition transam.c:126
#define InvalidTransactionId
Definition transam.h:31
#define TransactionIdIsValid(xid)
Definition transam.h:41
#define TTS_IS_BUFFERTUPLE(slot)
Definition tuptable.h:256
bool TransactionStartedDuringRecovery(void)
Definition xact.c:1044
bool bsysscan
Definition xact.c:102
TransactionId CheckXidAlive
Definition xact.c:101
bool IsInParallelMode(void)
Definition xact.c:1119