PostgreSQL Source Code  git master
execTuples.c
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * execTuples.c
4  * Routines dealing with TupleTableSlots. These are used for resource
5  * management associated with tuples (eg, releasing buffer pins for
6  * tuples in disk buffers, or freeing the memory occupied by transient
7  * tuples). Slots also provide access abstraction that lets us implement
8  * "virtual" tuples to reduce data-copying overhead.
9  *
10  * Routines dealing with the type information for tuples. Currently,
11  * the type information for a tuple is an array of FormData_pg_attribute.
12  * This information is needed by routines manipulating tuples
13  * (getattribute, formtuple, etc.).
14  *
15  *
16  * EXAMPLE OF HOW TABLE ROUTINES WORK
17  * Suppose we have a query such as SELECT emp.name FROM emp and we have
18  * a single SeqScan node in the query plan.
19  *
20  * At ExecutorStart()
21  * ----------------
22  *
23  * - ExecInitSeqScan() calls ExecInitScanTupleSlot() to construct a
24  * TupleTableSlots for the tuples returned by the access method, and
25  * ExecInitResultTypeTL() to define the node's return
26  * type. ExecAssignScanProjectionInfo() will, if necessary, create
27  * another TupleTableSlot for the tuples resulting from performing
28  * target list projections.
29  *
30  * During ExecutorRun()
31  * ----------------
32  * - SeqNext() calls ExecStoreBufferHeapTuple() to place the tuple
33  * returned by the access method into the scan tuple slot.
34  *
35  * - ExecSeqScan() (via ExecScan), if necessary, calls ExecProject(),
36  * putting the result of the projection in the result tuple slot. If
37  * not necessary, it directly returns the slot returned by SeqNext().
38  *
39  * - ExecutePlan() calls the output function.
40  *
41  * The important thing to watch in the executor code is how pointers
42  * to the slots containing tuples are passed instead of the tuples
43  * themselves. This facilitates the communication of related information
44  * (such as whether or not a tuple should be pfreed, what buffer contains
45  * this tuple, the tuple's tuple descriptor, etc). It also allows us
46  * to avoid physically constructing projection tuples in many cases.
47  *
48  *
49  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
50  * Portions Copyright (c) 1994, Regents of the University of California
51  *
52  *
53  * IDENTIFICATION
54  * src/backend/executor/execTuples.c
55  *
56  *-------------------------------------------------------------------------
57  */
58 #include "postgres.h"
59 
60 #include "access/heaptoast.h"
61 #include "access/htup_details.h"
62 #include "access/tupdesc_details.h"
63 #include "catalog/pg_type.h"
64 #include "funcapi.h"
65 #include "nodes/nodeFuncs.h"
66 #include "storage/bufmgr.h"
67 #include "utils/builtins.h"
68 #include "utils/expandeddatum.h"
69 #include "utils/lsyscache.h"
70 #include "utils/typcache.h"
71 
72 static TupleDesc ExecTypeFromTLInternal(List *targetList,
73  bool skipjunk);
75  int natts);
76 static inline void tts_buffer_heap_store_tuple(TupleTableSlot *slot,
77  HeapTuple tuple,
78  Buffer buffer,
79  bool transfer_pin);
80 static void tts_heap_store_tuple(TupleTableSlot *slot, HeapTuple tuple, bool shouldFree);
81 
82 
87 
88 
89 /*
90  * TupleTableSlotOps implementations.
91  */
92 
93 /*
94  * TupleTableSlotOps implementation for VirtualTupleTableSlot.
95  */
96 static void
98 {
99 }
100 
101 static void
103 {
104 }
105 
106 static void
108 {
109  if (unlikely(TTS_SHOULDFREE(slot)))
110  {
112 
113  pfree(vslot->data);
114  vslot->data = NULL;
115 
116  slot->tts_flags &= ~TTS_FLAG_SHOULDFREE;
117  }
118 
119  slot->tts_nvalid = 0;
120  slot->tts_flags |= TTS_FLAG_EMPTY;
122 }
123 
124 /*
125  * VirtualTupleTableSlots always have fully populated tts_values and
126  * tts_isnull arrays. So this function should never be called.
127  */
128 static void
130 {
131  elog(ERROR, "getsomeattrs is not required to be called on a virtual tuple table slot");
132 }
133 
134 /*
135  * VirtualTupleTableSlots never provide system attributes (except those
136  * handled generically, such as tableoid). We generally shouldn't get
137  * here, but provide a user-friendly message if we do.
138  */
139 static Datum
141 {
142  Assert(!TTS_EMPTY(slot));
143 
144  ereport(ERROR,
145  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
146  errmsg("cannot retrieve a system column in this context")));
147 
148  return 0; /* silence compiler warnings */
149 }
150 
151 /*
152  * To materialize a virtual slot all the datums that aren't passed by value
153  * have to be copied into the slot's memory context. To do so, compute the
154  * required size, and allocate enough memory to store all attributes. That's
155  * good for cache hit ratio, but more importantly requires only memory
156  * allocation/deallocation.
157  */
158 static void
160 {
162  TupleDesc desc = slot->tts_tupleDescriptor;
163  Size sz = 0;
164  char *data;
165 
166  /* already materialized */
167  if (TTS_SHOULDFREE(slot))
168  return;
169 
170  /* compute size of memory required */
171  for (int natt = 0; natt < desc->natts; natt++)
172  {
173  Form_pg_attribute att = TupleDescAttr(desc, natt);
174  Datum val;
175 
176  if (att->attbyval || slot->tts_isnull[natt])
177  continue;
178 
179  val = slot->tts_values[natt];
180 
181  if (att->attlen == -1 &&
183  {
184  /*
185  * We want to flatten the expanded value so that the materialized
186  * slot doesn't depend on it.
187  */
188  sz = att_align_nominal(sz, att->attalign);
190  }
191  else
192  {
193  sz = att_align_nominal(sz, att->attalign);
194  sz = att_addlength_datum(sz, att->attlen, val);
195  }
196  }
197 
198  /* all data is byval */
199  if (sz == 0)
200  return;
201 
202  /* allocate memory */
203  vslot->data = data = MemoryContextAlloc(slot->tts_mcxt, sz);
205 
206  /* and copy all attributes into the pre-allocated space */
207  for (int natt = 0; natt < desc->natts; natt++)
208  {
209  Form_pg_attribute att = TupleDescAttr(desc, natt);
210  Datum val;
211 
212  if (att->attbyval || slot->tts_isnull[natt])
213  continue;
214 
215  val = slot->tts_values[natt];
216 
217  if (att->attlen == -1 &&
219  {
220  Size data_length;
221 
222  /*
223  * We want to flatten the expanded value so that the materialized
224  * slot doesn't depend on it.
225  */
227 
228  data = (char *) att_align_nominal(data,
229  att->attalign);
230  data_length = EOH_get_flat_size(eoh);
231  EOH_flatten_into(eoh, data, data_length);
232 
233  slot->tts_values[natt] = PointerGetDatum(data);
234  data += data_length;
235  }
236  else
237  {
238  Size data_length = 0;
239 
240  data = (char *) att_align_nominal(data, att->attalign);
241  data_length = att_addlength_datum(data_length, att->attlen, val);
242 
243  memcpy(data, DatumGetPointer(val), data_length);
244 
245  slot->tts_values[natt] = PointerGetDatum(data);
246  data += data_length;
247  }
248  }
249 }
250 
251 static void
253 {
254  TupleDesc srcdesc = srcslot->tts_tupleDescriptor;
255 
256  Assert(srcdesc->natts <= dstslot->tts_tupleDescriptor->natts);
257 
258  tts_virtual_clear(dstslot);
259 
260  slot_getallattrs(srcslot);
261 
262  for (int natt = 0; natt < srcdesc->natts; natt++)
263  {
264  dstslot->tts_values[natt] = srcslot->tts_values[natt];
265  dstslot->tts_isnull[natt] = srcslot->tts_isnull[natt];
266  }
267 
268  dstslot->tts_nvalid = srcdesc->natts;
269  dstslot->tts_flags &= ~TTS_FLAG_EMPTY;
270 
271  /* make sure storage doesn't depend on external memory */
272  tts_virtual_materialize(dstslot);
273 }
274 
275 static HeapTuple
277 {
278  Assert(!TTS_EMPTY(slot));
279 
281  slot->tts_values,
282  slot->tts_isnull);
283 }
284 
285 static MinimalTuple
287 {
288  Assert(!TTS_EMPTY(slot));
289 
291  slot->tts_values,
292  slot->tts_isnull);
293 }
294 
295 
296 /*
297  * TupleTableSlotOps implementation for HeapTupleTableSlot.
298  */
299 
300 static void
302 {
303 }
304 
305 static void
307 {
308 }
309 
310 static void
312 {
313  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
314 
315  /* Free the memory for the heap tuple if it's allowed. */
316  if (TTS_SHOULDFREE(slot))
317  {
318  heap_freetuple(hslot->tuple);
319  slot->tts_flags &= ~TTS_FLAG_SHOULDFREE;
320  }
321 
322  slot->tts_nvalid = 0;
323  slot->tts_flags |= TTS_FLAG_EMPTY;
325  hslot->off = 0;
326  hslot->tuple = NULL;
327 }
328 
329 static void
331 {
332  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
333 
334  Assert(!TTS_EMPTY(slot));
335 
336  slot_deform_heap_tuple(slot, hslot->tuple, &hslot->off, natts);
337 }
338 
339 static Datum
340 tts_heap_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
341 {
342  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
343 
344  Assert(!TTS_EMPTY(slot));
345 
346  /*
347  * In some code paths it's possible to get here with a non-materialized
348  * slot, in which case we can't retrieve system columns.
349  */
350  if (!hslot->tuple)
351  ereport(ERROR,
352  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
353  errmsg("cannot retrieve a system column in this context")));
354 
355  return heap_getsysattr(hslot->tuple, attnum,
356  slot->tts_tupleDescriptor, isnull);
357 }
358 
359 static void
361 {
362  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
363  MemoryContext oldContext;
364 
365  Assert(!TTS_EMPTY(slot));
366 
367  /* If slot has its tuple already materialized, nothing to do. */
368  if (TTS_SHOULDFREE(slot))
369  return;
370 
371  oldContext = MemoryContextSwitchTo(slot->tts_mcxt);
372 
373  /*
374  * Have to deform from scratch, otherwise tts_values[] entries could point
375  * into the non-materialized tuple (which might be gone when accessed).
376  */
377  slot->tts_nvalid = 0;
378  hslot->off = 0;
379 
380  if (!hslot->tuple)
382  slot->tts_values,
383  slot->tts_isnull);
384  else
385  {
386  /*
387  * The tuple contained in this slot is not allocated in the memory
388  * context of the given slot (else it would have TTS_FLAG_SHOULDFREE
389  * set). Copy the tuple into the given slot's memory context.
390  */
391  hslot->tuple = heap_copytuple(hslot->tuple);
392  }
393 
395 
396  MemoryContextSwitchTo(oldContext);
397 }
398 
399 static void
401 {
402  HeapTuple tuple;
403  MemoryContext oldcontext;
404 
405  oldcontext = MemoryContextSwitchTo(dstslot->tts_mcxt);
406  tuple = ExecCopySlotHeapTuple(srcslot);
407  MemoryContextSwitchTo(oldcontext);
408 
409  ExecStoreHeapTuple(tuple, dstslot, true);
410 }
411 
412 static HeapTuple
414 {
415  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
416 
417  Assert(!TTS_EMPTY(slot));
418  if (!hslot->tuple)
419  tts_heap_materialize(slot);
420 
421  return hslot->tuple;
422 }
423 
424 static HeapTuple
426 {
427  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
428 
429  Assert(!TTS_EMPTY(slot));
430  if (!hslot->tuple)
431  tts_heap_materialize(slot);
432 
433  return heap_copytuple(hslot->tuple);
434 }
435 
436 static MinimalTuple
438 {
439  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
440 
441  if (!hslot->tuple)
442  tts_heap_materialize(slot);
443 
444  return minimal_tuple_from_heap_tuple(hslot->tuple);
445 }
446 
447 static void
448 tts_heap_store_tuple(TupleTableSlot *slot, HeapTuple tuple, bool shouldFree)
449 {
450  HeapTupleTableSlot *hslot = (HeapTupleTableSlot *) slot;
451 
452  tts_heap_clear(slot);
453 
454  slot->tts_nvalid = 0;
455  hslot->tuple = tuple;
456  hslot->off = 0;
458  slot->tts_tid = tuple->t_self;
459 
460  if (shouldFree)
462 }
463 
464 
465 /*
466  * TupleTableSlotOps implementation for MinimalTupleTableSlot.
467  */
468 
469 static void
471 {
473 
474  /*
475  * Initialize the heap tuple pointer to access attributes of the minimal
476  * tuple contained in the slot as if its a heap tuple.
477  */
478  mslot->tuple = &mslot->minhdr;
479 }
480 
481 static void
483 {
484 }
485 
486 static void
488 {
490 
491  if (TTS_SHOULDFREE(slot))
492  {
494  slot->tts_flags &= ~TTS_FLAG_SHOULDFREE;
495  }
496 
497  slot->tts_nvalid = 0;
498  slot->tts_flags |= TTS_FLAG_EMPTY;
500  mslot->off = 0;
501  mslot->mintuple = NULL;
502 }
503 
504 static void
506 {
508 
509  Assert(!TTS_EMPTY(slot));
510 
511  slot_deform_heap_tuple(slot, mslot->tuple, &mslot->off, natts);
512 }
513 
514 static Datum
516 {
517  Assert(!TTS_EMPTY(slot));
518 
519  ereport(ERROR,
520  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
521  errmsg("cannot retrieve a system column in this context")));
522 
523  return 0; /* silence compiler warnings */
524 }
525 
526 static void
528 {
530  MemoryContext oldContext;
531 
532  Assert(!TTS_EMPTY(slot));
533 
534  /* If slot has its tuple already materialized, nothing to do. */
535  if (TTS_SHOULDFREE(slot))
536  return;
537 
538  oldContext = MemoryContextSwitchTo(slot->tts_mcxt);
539 
540  /*
541  * Have to deform from scratch, otherwise tts_values[] entries could point
542  * into the non-materialized tuple (which might be gone when accessed).
543  */
544  slot->tts_nvalid = 0;
545  mslot->off = 0;
546 
547  if (!mslot->mintuple)
548  {
550  slot->tts_values,
551  slot->tts_isnull);
552  }
553  else
554  {
555  /*
556  * The minimal tuple contained in this slot is not allocated in the
557  * memory context of the given slot (else it would have
558  * TTS_FLAG_SHOULDFREE set). Copy the minimal tuple into the given
559  * slot's memory context.
560  */
561  mslot->mintuple = heap_copy_minimal_tuple(mslot->mintuple);
562  }
563 
565 
566  Assert(mslot->tuple == &mslot->minhdr);
567 
568  mslot->minhdr.t_len = mslot->mintuple->t_len + MINIMAL_TUPLE_OFFSET;
569  mslot->minhdr.t_data = (HeapTupleHeader) ((char *) mslot->mintuple - MINIMAL_TUPLE_OFFSET);
570 
571  MemoryContextSwitchTo(oldContext);
572 }
573 
574 static void
576 {
577  MemoryContext oldcontext;
578  MinimalTuple mintuple;
579 
580  oldcontext = MemoryContextSwitchTo(dstslot->tts_mcxt);
581  mintuple = ExecCopySlotMinimalTuple(srcslot);
582  MemoryContextSwitchTo(oldcontext);
583 
584  ExecStoreMinimalTuple(mintuple, dstslot, true);
585 }
586 
587 static MinimalTuple
589 {
591 
592  if (!mslot->mintuple)
594 
595  return mslot->mintuple;
596 }
597 
598 static HeapTuple
600 {
602 
603  if (!mslot->mintuple)
605 
607 }
608 
609 static MinimalTuple
611 {
613 
614  if (!mslot->mintuple)
616 
617  return heap_copy_minimal_tuple(mslot->mintuple);
618 }
619 
620 static void
622 {
624 
625  tts_minimal_clear(slot);
626 
627  Assert(!TTS_SHOULDFREE(slot));
628  Assert(TTS_EMPTY(slot));
629 
630  slot->tts_flags &= ~TTS_FLAG_EMPTY;
631  slot->tts_nvalid = 0;
632  mslot->off = 0;
633 
634  mslot->mintuple = mtup;
635  Assert(mslot->tuple == &mslot->minhdr);
636  mslot->minhdr.t_len = mtup->t_len + MINIMAL_TUPLE_OFFSET;
637  mslot->minhdr.t_data = (HeapTupleHeader) ((char *) mtup - MINIMAL_TUPLE_OFFSET);
638  /* no need to set t_self or t_tableOid since we won't allow access */
639 
640  if (shouldFree)
642 }
643 
644 
645 /*
646  * TupleTableSlotOps implementation for BufferHeapTupleTableSlot.
647  */
648 
649 static void
651 {
652 }
653 
654 static void
656 {
657 }
658 
659 static void
661 {
663 
664  /*
665  * Free the memory for heap tuple if allowed. A tuple coming from buffer
666  * can never be freed. But we may have materialized a tuple from buffer.
667  * Such a tuple can be freed.
668  */
669  if (TTS_SHOULDFREE(slot))
670  {
671  /* We should have unpinned the buffer while materializing the tuple. */
672  Assert(!BufferIsValid(bslot->buffer));
673 
674  heap_freetuple(bslot->base.tuple);
675  slot->tts_flags &= ~TTS_FLAG_SHOULDFREE;
676  }
677 
678  if (BufferIsValid(bslot->buffer))
679  ReleaseBuffer(bslot->buffer);
680 
681  slot->tts_nvalid = 0;
682  slot->tts_flags |= TTS_FLAG_EMPTY;
684  bslot->base.tuple = NULL;
685  bslot->base.off = 0;
686  bslot->buffer = InvalidBuffer;
687 }
688 
689 static void
691 {
693 
694  Assert(!TTS_EMPTY(slot));
695 
696  slot_deform_heap_tuple(slot, bslot->base.tuple, &bslot->base.off, natts);
697 }
698 
699 static Datum
701 {
703 
704  Assert(!TTS_EMPTY(slot));
705 
706  /*
707  * In some code paths it's possible to get here with a non-materialized
708  * slot, in which case we can't retrieve system columns.
709  */
710  if (!bslot->base.tuple)
711  ereport(ERROR,
712  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
713  errmsg("cannot retrieve a system column in this context")));
714 
715  return heap_getsysattr(bslot->base.tuple, attnum,
716  slot->tts_tupleDescriptor, isnull);
717 }
718 
719 static void
721 {
723  MemoryContext oldContext;
724 
725  Assert(!TTS_EMPTY(slot));
726 
727  /* If slot has its tuple already materialized, nothing to do. */
728  if (TTS_SHOULDFREE(slot))
729  return;
730 
731  oldContext = MemoryContextSwitchTo(slot->tts_mcxt);
732 
733  /*
734  * Have to deform from scratch, otherwise tts_values[] entries could point
735  * into the non-materialized tuple (which might be gone when accessed).
736  */
737  bslot->base.off = 0;
738  slot->tts_nvalid = 0;
739 
740  if (!bslot->base.tuple)
741  {
742  /*
743  * Normally BufferHeapTupleTableSlot should have a tuple + buffer
744  * associated with it, unless it's materialized (which would've
745  * returned above). But when it's useful to allow storing virtual
746  * tuples in a buffer slot, which then also needs to be
747  * materializable.
748  */
749  bslot->base.tuple = heap_form_tuple(slot->tts_tupleDescriptor,
750  slot->tts_values,
751  slot->tts_isnull);
752  }
753  else
754  {
755  bslot->base.tuple = heap_copytuple(bslot->base.tuple);
756 
757  /*
758  * A heap tuple stored in a BufferHeapTupleTableSlot should have a
759  * buffer associated with it, unless it's materialized or virtual.
760  */
761  if (likely(BufferIsValid(bslot->buffer)))
762  ReleaseBuffer(bslot->buffer);
763  bslot->buffer = InvalidBuffer;
764  }
765 
766  /*
767  * We don't set TTS_FLAG_SHOULDFREE until after releasing the buffer, if
768  * any. This avoids having a transient state that would fall foul of our
769  * assertions that a slot with TTS_FLAG_SHOULDFREE doesn't own a buffer.
770  * In the unlikely event that ReleaseBuffer() above errors out, we'd
771  * effectively leak the copied tuple, but that seems fairly harmless.
772  */
774 
775  MemoryContextSwitchTo(oldContext);
776 }
777 
778 static void
780 {
781  BufferHeapTupleTableSlot *bsrcslot = (BufferHeapTupleTableSlot *) srcslot;
782  BufferHeapTupleTableSlot *bdstslot = (BufferHeapTupleTableSlot *) dstslot;
783 
784  /*
785  * If the source slot is of a different kind, or is a buffer slot that has
786  * been materialized / is virtual, make a new copy of the tuple. Otherwise
787  * make a new reference to the in-buffer tuple.
788  */
789  if (dstslot->tts_ops != srcslot->tts_ops ||
790  TTS_SHOULDFREE(srcslot) ||
791  !bsrcslot->base.tuple)
792  {
793  MemoryContext oldContext;
794 
795  ExecClearTuple(dstslot);
796  dstslot->tts_flags &= ~TTS_FLAG_EMPTY;
797  oldContext = MemoryContextSwitchTo(dstslot->tts_mcxt);
798  bdstslot->base.tuple = ExecCopySlotHeapTuple(srcslot);
799  dstslot->tts_flags |= TTS_FLAG_SHOULDFREE;
800  MemoryContextSwitchTo(oldContext);
801  }
802  else
803  {
804  Assert(BufferIsValid(bsrcslot->buffer));
805 
806  tts_buffer_heap_store_tuple(dstslot, bsrcslot->base.tuple,
807  bsrcslot->buffer, false);
808 
809  /*
810  * The HeapTupleData portion of the source tuple might be shorter
811  * lived than the destination slot. Therefore copy the HeapTuple into
812  * our slot's tupdata, which is guaranteed to live long enough (but
813  * will still point into the buffer).
814  */
815  memcpy(&bdstslot->base.tupdata, bdstslot->base.tuple, sizeof(HeapTupleData));
816  bdstslot->base.tuple = &bdstslot->base.tupdata;
817  }
818 }
819 
820 static HeapTuple
822 {
824 
825  Assert(!TTS_EMPTY(slot));
826 
827  if (!bslot->base.tuple)
829 
830  return bslot->base.tuple;
831 }
832 
833 static HeapTuple
835 {
837 
838  Assert(!TTS_EMPTY(slot));
839 
840  if (!bslot->base.tuple)
842 
843  return heap_copytuple(bslot->base.tuple);
844 }
845 
846 static MinimalTuple
848 {
850 
851  Assert(!TTS_EMPTY(slot));
852 
853  if (!bslot->base.tuple)
855 
856  return minimal_tuple_from_heap_tuple(bslot->base.tuple);
857 }
858 
859 static inline void
861  Buffer buffer, bool transfer_pin)
862 {
864 
865  if (TTS_SHOULDFREE(slot))
866  {
867  /* materialized slot shouldn't have a buffer to release */
868  Assert(!BufferIsValid(bslot->buffer));
869 
870  heap_freetuple(bslot->base.tuple);
871  slot->tts_flags &= ~TTS_FLAG_SHOULDFREE;
872  }
873 
874  slot->tts_flags &= ~TTS_FLAG_EMPTY;
875  slot->tts_nvalid = 0;
876  bslot->base.tuple = tuple;
877  bslot->base.off = 0;
878  slot->tts_tid = tuple->t_self;
879 
880  /*
881  * If tuple is on a disk page, keep the page pinned as long as we hold a
882  * pointer into it. We assume the caller already has such a pin. If
883  * transfer_pin is true, we'll transfer that pin to this slot, if not
884  * we'll pin it again ourselves.
885  *
886  * This is coded to optimize the case where the slot previously held a
887  * tuple on the same disk page: in that case releasing and re-acquiring
888  * the pin is a waste of cycles. This is a common situation during
889  * seqscans, so it's worth troubling over.
890  */
891  if (bslot->buffer != buffer)
892  {
893  if (BufferIsValid(bslot->buffer))
894  ReleaseBuffer(bslot->buffer);
895 
896  bslot->buffer = buffer;
897 
898  if (!transfer_pin && BufferIsValid(buffer))
899  IncrBufferRefCount(buffer);
900  }
901  else if (transfer_pin && BufferIsValid(buffer))
902  {
903  /*
904  * In transfer_pin mode the caller won't know about the same-page
905  * optimization, so we gotta release its pin.
906  */
907  ReleaseBuffer(buffer);
908  }
909 }
910 
911 /*
912  * slot_deform_heap_tuple
913  * Given a TupleTableSlot, extract data from the slot's physical tuple
914  * into its Datum/isnull arrays. Data is extracted up through the
915  * natts'th column (caller must ensure this is a legal column number).
916  *
917  * This is essentially an incremental version of heap_deform_tuple:
918  * on each call we extract attributes up to the one needed, without
919  * re-computing information about previously extracted attributes.
920  * slot->tts_nvalid is the number of attributes already extracted.
921  *
922  * This is marked as always inline, so the different offp for different types
923  * of slots gets optimized away.
924  */
925 static pg_attribute_always_inline void
927  int natts)
928 {
929  TupleDesc tupleDesc = slot->tts_tupleDescriptor;
930  Datum *values = slot->tts_values;
931  bool *isnull = slot->tts_isnull;
932  HeapTupleHeader tup = tuple->t_data;
933  bool hasnulls = HeapTupleHasNulls(tuple);
934  int attnum;
935  char *tp; /* ptr to tuple data */
936  uint32 off; /* offset in tuple data */
937  bits8 *bp = tup->t_bits; /* ptr to null bitmap in tuple */
938  bool slow; /* can we use/set attcacheoff? */
939 
940  /* We can only fetch as many attributes as the tuple has. */
941  natts = Min(HeapTupleHeaderGetNatts(tuple->t_data), natts);
942 
943  /*
944  * Check whether the first call for this tuple, and initialize or restore
945  * loop state.
946  */
947  attnum = slot->tts_nvalid;
948  if (attnum == 0)
949  {
950  /* Start from the first attribute */
951  off = 0;
952  slow = false;
953  }
954  else
955  {
956  /* Restore state from previous execution */
957  off = *offp;
958  slow = TTS_SLOW(slot);
959  }
960 
961  tp = (char *) tup + tup->t_hoff;
962 
963  for (; attnum < natts; attnum++)
964  {
965  Form_pg_attribute thisatt = TupleDescAttr(tupleDesc, attnum);
966 
967  if (hasnulls && att_isnull(attnum, bp))
968  {
969  values[attnum] = (Datum) 0;
970  isnull[attnum] = true;
971  slow = true; /* can't use attcacheoff anymore */
972  continue;
973  }
974 
975  isnull[attnum] = false;
976 
977  if (!slow && thisatt->attcacheoff >= 0)
978  off = thisatt->attcacheoff;
979  else if (thisatt->attlen == -1)
980  {
981  /*
982  * We can only cache the offset for a varlena attribute if the
983  * offset is already suitably aligned, so that there would be no
984  * pad bytes in any case: then the offset will be valid for either
985  * an aligned or unaligned value.
986  */
987  if (!slow &&
988  off == att_align_nominal(off, thisatt->attalign))
989  thisatt->attcacheoff = off;
990  else
991  {
992  off = att_align_pointer(off, thisatt->attalign, -1,
993  tp + off);
994  slow = true;
995  }
996  }
997  else
998  {
999  /* not varlena, so safe to use att_align_nominal */
1000  off = att_align_nominal(off, thisatt->attalign);
1001 
1002  if (!slow)
1003  thisatt->attcacheoff = off;
1004  }
1005 
1006  values[attnum] = fetchatt(thisatt, tp + off);
1007 
1008  off = att_addlength_pointer(off, thisatt->attlen, tp + off);
1009 
1010  if (thisatt->attlen <= 0)
1011  slow = true; /* can't use attcacheoff anymore */
1012  }
1013 
1014  /*
1015  * Save state for next execution
1016  */
1017  slot->tts_nvalid = attnum;
1018  *offp = off;
1019  if (slow)
1020  slot->tts_flags |= TTS_FLAG_SLOW;
1021  else
1022  slot->tts_flags &= ~TTS_FLAG_SLOW;
1023 }
1024 
1025 
1029  .release = tts_virtual_release,
1030  .clear = tts_virtual_clear,
1031  .getsomeattrs = tts_virtual_getsomeattrs,
1032  .getsysattr = tts_virtual_getsysattr,
1033  .materialize = tts_virtual_materialize,
1034  .copyslot = tts_virtual_copyslot,
1035 
1036  /*
1037  * A virtual tuple table slot can not "own" a heap tuple or a minimal
1038  * tuple.
1039  */
1040  .get_heap_tuple = NULL,
1041  .get_minimal_tuple = NULL,
1042  .copy_heap_tuple = tts_virtual_copy_heap_tuple,
1043  .copy_minimal_tuple = tts_virtual_copy_minimal_tuple
1044 };
1045 
1048  .init = tts_heap_init,
1049  .release = tts_heap_release,
1050  .clear = tts_heap_clear,
1051  .getsomeattrs = tts_heap_getsomeattrs,
1052  .getsysattr = tts_heap_getsysattr,
1053  .materialize = tts_heap_materialize,
1054  .copyslot = tts_heap_copyslot,
1055  .get_heap_tuple = tts_heap_get_heap_tuple,
1056 
1057  /* A heap tuple table slot can not "own" a minimal tuple. */
1058  .get_minimal_tuple = NULL,
1059  .copy_heap_tuple = tts_heap_copy_heap_tuple,
1060  .copy_minimal_tuple = tts_heap_copy_minimal_tuple
1061 };
1062 
1066  .release = tts_minimal_release,
1067  .clear = tts_minimal_clear,
1068  .getsomeattrs = tts_minimal_getsomeattrs,
1069  .getsysattr = tts_minimal_getsysattr,
1070  .materialize = tts_minimal_materialize,
1071  .copyslot = tts_minimal_copyslot,
1072 
1073  /* A minimal tuple table slot can not "own" a heap tuple. */
1074  .get_heap_tuple = NULL,
1075  .get_minimal_tuple = tts_minimal_get_minimal_tuple,
1076  .copy_heap_tuple = tts_minimal_copy_heap_tuple,
1077  .copy_minimal_tuple = tts_minimal_copy_minimal_tuple
1078 };
1079 
1083  .release = tts_buffer_heap_release,
1084  .clear = tts_buffer_heap_clear,
1085  .getsomeattrs = tts_buffer_heap_getsomeattrs,
1086  .getsysattr = tts_buffer_heap_getsysattr,
1087  .materialize = tts_buffer_heap_materialize,
1088  .copyslot = tts_buffer_heap_copyslot,
1089  .get_heap_tuple = tts_buffer_heap_get_heap_tuple,
1090 
1091  /* A buffer heap tuple table slot can not "own" a minimal tuple. */
1092  .get_minimal_tuple = NULL,
1093  .copy_heap_tuple = tts_buffer_heap_copy_heap_tuple,
1094  .copy_minimal_tuple = tts_buffer_heap_copy_minimal_tuple
1095 };
1096 
1097 
1098 /* ----------------------------------------------------------------
1099  * tuple table create/delete functions
1100  * ----------------------------------------------------------------
1101  */
1102 
1103 /* --------------------------------
1104  * MakeTupleTableSlot
1105  *
1106  * Basic routine to make an empty TupleTableSlot of given
1107  * TupleTableSlotType. If tupleDesc is specified the slot's descriptor is
1108  * fixed for its lifetime, gaining some efficiency. If that's
1109  * undesirable, pass NULL.
1110  * --------------------------------
1111  */
1114  const TupleTableSlotOps *tts_ops)
1115 {
1116  Size basesz,
1117  allocsz;
1118  TupleTableSlot *slot;
1119 
1120  basesz = tts_ops->base_slot_size;
1121 
1122  /*
1123  * When a fixed descriptor is specified, we can reduce overhead by
1124  * allocating the entire slot in one go.
1125  */
1126  if (tupleDesc)
1127  allocsz = MAXALIGN(basesz) +
1128  MAXALIGN(tupleDesc->natts * sizeof(Datum)) +
1129  MAXALIGN(tupleDesc->natts * sizeof(bool));
1130  else
1131  allocsz = basesz;
1132 
1133  slot = palloc0(allocsz);
1134  /* const for optimization purposes, OK to modify at allocation time */
1135  *((const TupleTableSlotOps **) &slot->tts_ops) = tts_ops;
1136  slot->type = T_TupleTableSlot;
1137  slot->tts_flags |= TTS_FLAG_EMPTY;
1138  if (tupleDesc != NULL)
1139  slot->tts_flags |= TTS_FLAG_FIXED;
1140  slot->tts_tupleDescriptor = tupleDesc;
1142  slot->tts_nvalid = 0;
1143 
1144  if (tupleDesc != NULL)
1145  {
1146  slot->tts_values = (Datum *)
1147  (((char *) slot)
1148  + MAXALIGN(basesz));
1149  slot->tts_isnull = (bool *)
1150  (((char *) slot)
1151  + MAXALIGN(basesz)
1152  + MAXALIGN(tupleDesc->natts * sizeof(Datum)));
1153 
1154  PinTupleDesc(tupleDesc);
1155  }
1156 
1157  /*
1158  * And allow slot type specific initialization.
1159  */
1160  slot->tts_ops->init(slot);
1161 
1162  return slot;
1163 }
1164 
1165 /* --------------------------------
1166  * ExecAllocTableSlot
1167  *
1168  * Create a tuple table slot within a tuple table (which is just a List).
1169  * --------------------------------
1170  */
1172 ExecAllocTableSlot(List **tupleTable, TupleDesc desc,
1173  const TupleTableSlotOps *tts_ops)
1174 {
1175  TupleTableSlot *slot = MakeTupleTableSlot(desc, tts_ops);
1176 
1177  *tupleTable = lappend(*tupleTable, slot);
1178 
1179  return slot;
1180 }
1181 
1182 /* --------------------------------
1183  * ExecResetTupleTable
1184  *
1185  * This releases any resources (buffer pins, tupdesc refcounts)
1186  * held by the tuple table, and optionally releases the memory
1187  * occupied by the tuple table data structure.
1188  * It is expected that this routine be called by ExecEndPlan().
1189  * --------------------------------
1190  */
1191 void
1192 ExecResetTupleTable(List *tupleTable, /* tuple table */
1193  bool shouldFree) /* true if we should free memory */
1194 {
1195  ListCell *lc;
1196 
1197  foreach(lc, tupleTable)
1198  {
1200 
1201  /* Always release resources and reset the slot to empty */
1202  ExecClearTuple(slot);
1203  slot->tts_ops->release(slot);
1204  if (slot->tts_tupleDescriptor)
1205  {
1207  slot->tts_tupleDescriptor = NULL;
1208  }
1209 
1210  /* If shouldFree, release memory occupied by the slot itself */
1211  if (shouldFree)
1212  {
1213  if (!TTS_FIXED(slot))
1214  {
1215  if (slot->tts_values)
1216  pfree(slot->tts_values);
1217  if (slot->tts_isnull)
1218  pfree(slot->tts_isnull);
1219  }
1220  pfree(slot);
1221  }
1222  }
1223 
1224  /* If shouldFree, release the list structure */
1225  if (shouldFree)
1226  list_free(tupleTable);
1227 }
1228 
1229 /* --------------------------------
1230  * MakeSingleTupleTableSlot
1231  *
1232  * This is a convenience routine for operations that need a standalone
1233  * TupleTableSlot not gotten from the main executor tuple table. It makes
1234  * a single slot of given TupleTableSlotType and initializes it to use the
1235  * given tuple descriptor.
1236  * --------------------------------
1237  */
1240  const TupleTableSlotOps *tts_ops)
1241 {
1242  TupleTableSlot *slot = MakeTupleTableSlot(tupdesc, tts_ops);
1243 
1244  return slot;
1245 }
1246 
1247 /* --------------------------------
1248  * ExecDropSingleTupleTableSlot
1249  *
1250  * Release a TupleTableSlot made with MakeSingleTupleTableSlot.
1251  * DON'T use this on a slot that's part of a tuple table list!
1252  * --------------------------------
1253  */
1254 void
1256 {
1257  /* This should match ExecResetTupleTable's processing of one slot */
1258  Assert(IsA(slot, TupleTableSlot));
1259  ExecClearTuple(slot);
1260  slot->tts_ops->release(slot);
1261  if (slot->tts_tupleDescriptor)
1263  if (!TTS_FIXED(slot))
1264  {
1265  if (slot->tts_values)
1266  pfree(slot->tts_values);
1267  if (slot->tts_isnull)
1268  pfree(slot->tts_isnull);
1269  }
1270  pfree(slot);
1271 }
1272 
1273 
1274 /* ----------------------------------------------------------------
1275  * tuple table slot accessor functions
1276  * ----------------------------------------------------------------
1277  */
1278 
1279 /* --------------------------------
1280  * ExecSetSlotDescriptor
1281  *
1282  * This function is used to set the tuple descriptor associated
1283  * with the slot's tuple. The passed descriptor must have lifespan
1284  * at least equal to the slot's. If it is a reference-counted descriptor
1285  * then the reference count is incremented for as long as the slot holds
1286  * a reference.
1287  * --------------------------------
1288  */
1289 void
1290 ExecSetSlotDescriptor(TupleTableSlot *slot, /* slot to change */
1291  TupleDesc tupdesc) /* new tuple descriptor */
1292 {
1293  Assert(!TTS_FIXED(slot));
1294 
1295  /* For safety, make sure slot is empty before changing it */
1296  ExecClearTuple(slot);
1297 
1298  /*
1299  * Release any old descriptor. Also release old Datum/isnull arrays if
1300  * present (we don't bother to check if they could be re-used).
1301  */
1302  if (slot->tts_tupleDescriptor)
1304 
1305  if (slot->tts_values)
1306  pfree(slot->tts_values);
1307  if (slot->tts_isnull)
1308  pfree(slot->tts_isnull);
1309 
1310  /*
1311  * Install the new descriptor; if it's refcounted, bump its refcount.
1312  */
1313  slot->tts_tupleDescriptor = tupdesc;
1314  PinTupleDesc(tupdesc);
1315 
1316  /*
1317  * Allocate Datum/isnull arrays of the appropriate size. These must have
1318  * the same lifetime as the slot, so allocate in the slot's own context.
1319  */
1320  slot->tts_values = (Datum *)
1321  MemoryContextAlloc(slot->tts_mcxt, tupdesc->natts * sizeof(Datum));
1322  slot->tts_isnull = (bool *)
1323  MemoryContextAlloc(slot->tts_mcxt, tupdesc->natts * sizeof(bool));
1324 }
1325 
1326 /* --------------------------------
1327  * ExecStoreHeapTuple
1328  *
1329  * This function is used to store an on-the-fly physical tuple into a specified
1330  * slot in the tuple table.
1331  *
1332  * tuple: tuple to store
1333  * slot: TTSOpsHeapTuple type slot to store it in
1334  * shouldFree: true if ExecClearTuple should pfree() the tuple
1335  * when done with it
1336  *
1337  * shouldFree is normally set 'true' for tuples constructed on-the-fly. But it
1338  * can be 'false' when the referenced tuple is held in a tuple table slot
1339  * belonging to a lower-level executor Proc node. In this case the lower-level
1340  * slot retains ownership and responsibility for eventually releasing the
1341  * tuple. When this method is used, we must be certain that the upper-level
1342  * Proc node will lose interest in the tuple sooner than the lower-level one
1343  * does! If you're not certain, copy the lower-level tuple with heap_copytuple
1344  * and let the upper-level table slot assume ownership of the copy!
1345  *
1346  * Return value is just the passed-in slot pointer.
1347  *
1348  * If the target slot is not guaranteed to be TTSOpsHeapTuple type slot, use
1349  * the, more expensive, ExecForceStoreHeapTuple().
1350  * --------------------------------
1351  */
1354  TupleTableSlot *slot,
1355  bool shouldFree)
1356 {
1357  /*
1358  * sanity checks
1359  */
1360  Assert(tuple != NULL);
1361  Assert(slot != NULL);
1362  Assert(slot->tts_tupleDescriptor != NULL);
1363 
1364  if (unlikely(!TTS_IS_HEAPTUPLE(slot)))
1365  elog(ERROR, "trying to store a heap tuple into wrong type of slot");
1366  tts_heap_store_tuple(slot, tuple, shouldFree);
1367 
1368  slot->tts_tableOid = tuple->t_tableOid;
1369 
1370  return slot;
1371 }
1372 
1373 /* --------------------------------
1374  * ExecStoreBufferHeapTuple
1375  *
1376  * This function is used to store an on-disk physical tuple from a buffer
1377  * into a specified slot in the tuple table.
1378  *
1379  * tuple: tuple to store
1380  * slot: TTSOpsBufferHeapTuple type slot to store it in
1381  * buffer: disk buffer if tuple is in a disk page, else InvalidBuffer
1382  *
1383  * The tuple table code acquires a pin on the buffer which is held until the
1384  * slot is cleared, so that the tuple won't go away on us.
1385  *
1386  * Return value is just the passed-in slot pointer.
1387  *
1388  * If the target slot is not guaranteed to be TTSOpsBufferHeapTuple type slot,
1389  * use the, more expensive, ExecForceStoreHeapTuple().
1390  * --------------------------------
1391  */
1394  TupleTableSlot *slot,
1395  Buffer buffer)
1396 {
1397  /*
1398  * sanity checks
1399  */
1400  Assert(tuple != NULL);
1401  Assert(slot != NULL);
1402  Assert(slot->tts_tupleDescriptor != NULL);
1403  Assert(BufferIsValid(buffer));
1404 
1405  if (unlikely(!TTS_IS_BUFFERTUPLE(slot)))
1406  elog(ERROR, "trying to store an on-disk heap tuple into wrong type of slot");
1407  tts_buffer_heap_store_tuple(slot, tuple, buffer, false);
1408 
1409  slot->tts_tableOid = tuple->t_tableOid;
1410 
1411  return slot;
1412 }
1413 
1414 /*
1415  * Like ExecStoreBufferHeapTuple, but transfer an existing pin from the caller
1416  * to the slot, i.e. the caller doesn't need to, and may not, release the pin.
1417  */
1420  TupleTableSlot *slot,
1421  Buffer buffer)
1422 {
1423  /*
1424  * sanity checks
1425  */
1426  Assert(tuple != NULL);
1427  Assert(slot != NULL);
1428  Assert(slot->tts_tupleDescriptor != NULL);
1429  Assert(BufferIsValid(buffer));
1430 
1431  if (unlikely(!TTS_IS_BUFFERTUPLE(slot)))
1432  elog(ERROR, "trying to store an on-disk heap tuple into wrong type of slot");
1433  tts_buffer_heap_store_tuple(slot, tuple, buffer, true);
1434 
1435  slot->tts_tableOid = tuple->t_tableOid;
1436 
1437  return slot;
1438 }
1439 
1440 /*
1441  * Store a minimal tuple into TTSOpsMinimalTuple type slot.
1442  *
1443  * If the target slot is not guaranteed to be TTSOpsMinimalTuple type slot,
1444  * use the, more expensive, ExecForceStoreMinimalTuple().
1445  */
1448  TupleTableSlot *slot,
1449  bool shouldFree)
1450 {
1451  /*
1452  * sanity checks
1453  */
1454  Assert(mtup != NULL);
1455  Assert(slot != NULL);
1456  Assert(slot->tts_tupleDescriptor != NULL);
1457 
1458  if (unlikely(!TTS_IS_MINIMALTUPLE(slot)))
1459  elog(ERROR, "trying to store a minimal tuple into wrong type of slot");
1460  tts_minimal_store_tuple(slot, mtup, shouldFree);
1461 
1462  return slot;
1463 }
1464 
1465 /*
1466  * Store a HeapTuple into any kind of slot, performing conversion if
1467  * necessary.
1468  */
1469 void
1471  TupleTableSlot *slot,
1472  bool shouldFree)
1473 {
1474  if (TTS_IS_HEAPTUPLE(slot))
1475  {
1476  ExecStoreHeapTuple(tuple, slot, shouldFree);
1477  }
1478  else if (TTS_IS_BUFFERTUPLE(slot))
1479  {
1480  MemoryContext oldContext;
1482 
1483  ExecClearTuple(slot);
1484  slot->tts_flags &= ~TTS_FLAG_EMPTY;
1485  oldContext = MemoryContextSwitchTo(slot->tts_mcxt);
1486  bslot->base.tuple = heap_copytuple(tuple);
1487  slot->tts_flags |= TTS_FLAG_SHOULDFREE;
1488  MemoryContextSwitchTo(oldContext);
1489 
1490  if (shouldFree)
1491  pfree(tuple);
1492  }
1493  else
1494  {
1495  ExecClearTuple(slot);
1497  slot->tts_values, slot->tts_isnull);
1498  ExecStoreVirtualTuple(slot);
1499 
1500  if (shouldFree)
1501  {
1502  ExecMaterializeSlot(slot);
1503  pfree(tuple);
1504  }
1505  }
1506 }
1507 
1508 /*
1509  * Store a MinimalTuple into any kind of slot, performing conversion if
1510  * necessary.
1511  */
1512 void
1514  TupleTableSlot *slot,
1515  bool shouldFree)
1516 {
1517  if (TTS_IS_MINIMALTUPLE(slot))
1518  {
1519  tts_minimal_store_tuple(slot, mtup, shouldFree);
1520  }
1521  else
1522  {
1523  HeapTupleData htup;
1524 
1525  ExecClearTuple(slot);
1526 
1527  htup.t_len = mtup->t_len + MINIMAL_TUPLE_OFFSET;
1528  htup.t_data = (HeapTupleHeader) ((char *) mtup - MINIMAL_TUPLE_OFFSET);
1530  slot->tts_values, slot->tts_isnull);
1531  ExecStoreVirtualTuple(slot);
1532 
1533  if (shouldFree)
1534  {
1535  ExecMaterializeSlot(slot);
1536  pfree(mtup);
1537  }
1538  }
1539 }
1540 
1541 /* --------------------------------
1542  * ExecStoreVirtualTuple
1543  * Mark a slot as containing a virtual tuple.
1544  *
1545  * The protocol for loading a slot with virtual tuple data is:
1546  * * Call ExecClearTuple to mark the slot empty.
1547  * * Store data into the Datum/isnull arrays.
1548  * * Call ExecStoreVirtualTuple to mark the slot valid.
1549  * This is a bit unclean but it avoids one round of data copying.
1550  * --------------------------------
1551  */
1554 {
1555  /*
1556  * sanity checks
1557  */
1558  Assert(slot != NULL);
1559  Assert(slot->tts_tupleDescriptor != NULL);
1560  Assert(TTS_EMPTY(slot));
1561 
1562  slot->tts_flags &= ~TTS_FLAG_EMPTY;
1563  slot->tts_nvalid = slot->tts_tupleDescriptor->natts;
1564 
1565  return slot;
1566 }
1567 
1568 /* --------------------------------
1569  * ExecStoreAllNullTuple
1570  * Set up the slot to contain a null in every column.
1571  *
1572  * At first glance this might sound just like ExecClearTuple, but it's
1573  * entirely different: the slot ends up full, not empty.
1574  * --------------------------------
1575  */
1578 {
1579  /*
1580  * sanity checks
1581  */
1582  Assert(slot != NULL);
1583  Assert(slot->tts_tupleDescriptor != NULL);
1584 
1585  /* Clear any old contents */
1586  ExecClearTuple(slot);
1587 
1588  /*
1589  * Fill all the columns of the virtual tuple with nulls
1590  */
1591  MemSet(slot->tts_values, 0,
1592  slot->tts_tupleDescriptor->natts * sizeof(Datum));
1593  memset(slot->tts_isnull, true,
1594  slot->tts_tupleDescriptor->natts * sizeof(bool));
1595 
1596  return ExecStoreVirtualTuple(slot);
1597 }
1598 
1599 /*
1600  * Store a HeapTuple in datum form, into a slot. That always requires
1601  * deforming it and storing it in virtual form.
1602  *
1603  * Until the slot is materialized, the contents of the slot depend on the
1604  * datum.
1605  */
1606 void
1608 {
1609  HeapTupleData tuple = {0};
1610  HeapTupleHeader td;
1611 
1613 
1615  tuple.t_self = td->t_ctid;
1616  tuple.t_data = td;
1617 
1618  ExecClearTuple(slot);
1619 
1620  heap_deform_tuple(&tuple, slot->tts_tupleDescriptor,
1621  slot->tts_values, slot->tts_isnull);
1622  ExecStoreVirtualTuple(slot);
1623 }
1624 
1625 /*
1626  * ExecFetchSlotHeapTuple - fetch HeapTuple representing the slot's content
1627  *
1628  * The returned HeapTuple represents the slot's content as closely as
1629  * possible.
1630  *
1631  * If materialize is true, the contents of the slots will be made independent
1632  * from the underlying storage (i.e. all buffer pins are released, memory is
1633  * allocated in the slot's context).
1634  *
1635  * If shouldFree is not-NULL it'll be set to true if the returned tuple has
1636  * been allocated in the calling memory context, and must be freed by the
1637  * caller (via explicit pfree() or a memory context reset).
1638  *
1639  * NB: If materialize is true, modifications of the returned tuple are
1640  * allowed. But it depends on the type of the slot whether such modifications
1641  * will also affect the slot's contents. While that is not the nicest
1642  * behaviour, all such modifications are in the process of being removed.
1643  */
1644 HeapTuple
1645 ExecFetchSlotHeapTuple(TupleTableSlot *slot, bool materialize, bool *shouldFree)
1646 {
1647  /*
1648  * sanity checks
1649  */
1650  Assert(slot != NULL);
1651  Assert(!TTS_EMPTY(slot));
1652 
1653  /* Materialize the tuple so that the slot "owns" it, if requested. */
1654  if (materialize)
1655  slot->tts_ops->materialize(slot);
1656 
1657  if (slot->tts_ops->get_heap_tuple == NULL)
1658  {
1659  if (shouldFree)
1660  *shouldFree = true;
1661  return slot->tts_ops->copy_heap_tuple(slot);
1662  }
1663  else
1664  {
1665  if (shouldFree)
1666  *shouldFree = false;
1667  return slot->tts_ops->get_heap_tuple(slot);
1668  }
1669 }
1670 
1671 /* --------------------------------
1672  * ExecFetchSlotMinimalTuple
1673  * Fetch the slot's minimal physical tuple.
1674  *
1675  * If the given tuple table slot can hold a minimal tuple, indicated by a
1676  * non-NULL get_minimal_tuple callback, the function returns the minimal
1677  * tuple returned by that callback. It assumes that the minimal tuple
1678  * returned by the callback is "owned" by the slot i.e. the slot is
1679  * responsible for freeing the memory consumed by the tuple. Hence it sets
1680  * *shouldFree to false, indicating that the caller should not free the
1681  * memory consumed by the minimal tuple. In this case the returned minimal
1682  * tuple should be considered as read-only.
1683  *
1684  * If that callback is not supported, it calls copy_minimal_tuple callback
1685  * which is expected to return a copy of minimal tuple representing the
1686  * contents of the slot. In this case *shouldFree is set to true,
1687  * indicating the caller that it should free the memory consumed by the
1688  * minimal tuple. In this case the returned minimal tuple may be written
1689  * up.
1690  * --------------------------------
1691  */
1694  bool *shouldFree)
1695 {
1696  /*
1697  * sanity checks
1698  */
1699  Assert(slot != NULL);
1700  Assert(!TTS_EMPTY(slot));
1701 
1702  if (slot->tts_ops->get_minimal_tuple)
1703  {
1704  if (shouldFree)
1705  *shouldFree = false;
1706  return slot->tts_ops->get_minimal_tuple(slot);
1707  }
1708  else
1709  {
1710  if (shouldFree)
1711  *shouldFree = true;
1712  return slot->tts_ops->copy_minimal_tuple(slot);
1713  }
1714 }
1715 
1716 /* --------------------------------
1717  * ExecFetchSlotHeapTupleDatum
1718  * Fetch the slot's tuple as a composite-type Datum.
1719  *
1720  * The result is always freshly palloc'd in the caller's memory context.
1721  * --------------------------------
1722  */
1723 Datum
1725 {
1726  HeapTuple tup;
1727  TupleDesc tupdesc;
1728  bool shouldFree;
1729  Datum ret;
1730 
1731  /* Fetch slot's contents in regular-physical-tuple form */
1732  tup = ExecFetchSlotHeapTuple(slot, false, &shouldFree);
1733  tupdesc = slot->tts_tupleDescriptor;
1734 
1735  /* Convert to Datum form */
1736  ret = heap_copy_tuple_as_datum(tup, tupdesc);
1737 
1738  if (shouldFree)
1739  pfree(tup);
1740 
1741  return ret;
1742 }
1743 
1744 /* ----------------------------------------------------------------
1745  * convenience initialization routines
1746  * ----------------------------------------------------------------
1747  */
1748 
1749 /* ----------------
1750  * ExecInitResultTypeTL
1751  *
1752  * Initialize result type, using the plan node's targetlist.
1753  * ----------------
1754  */
1755 void
1757 {
1758  TupleDesc tupDesc = ExecTypeFromTL(planstate->plan->targetlist);
1759 
1760  planstate->ps_ResultTupleDesc = tupDesc;
1761 }
1762 
1763 /* --------------------------------
1764  * ExecInit{Result,Scan,Extra}TupleSlot[TL]
1765  *
1766  * These are convenience routines to initialize the specified slot
1767  * in nodes inheriting the appropriate state. ExecInitExtraTupleSlot
1768  * is used for initializing special-purpose slots.
1769  * --------------------------------
1770  */
1771 
1772 /* ----------------
1773  * ExecInitResultTupleSlotTL
1774  *
1775  * Initialize result tuple slot, using the tuple descriptor previously
1776  * computed with ExecInitResultTypeTL().
1777  * ----------------
1778  */
1779 void
1781 {
1782  TupleTableSlot *slot;
1783 
1784  slot = ExecAllocTableSlot(&planstate->state->es_tupleTable,
1785  planstate->ps_ResultTupleDesc, tts_ops);
1786  planstate->ps_ResultTupleSlot = slot;
1787 
1788  planstate->resultopsfixed = planstate->ps_ResultTupleDesc != NULL;
1789  planstate->resultops = tts_ops;
1790  planstate->resultopsset = true;
1791 }
1792 
1793 /* ----------------
1794  * ExecInitResultTupleSlotTL
1795  *
1796  * Initialize result tuple slot, using the plan node's targetlist.
1797  * ----------------
1798  */
1799 void
1801  const TupleTableSlotOps *tts_ops)
1802 {
1803  ExecInitResultTypeTL(planstate);
1804  ExecInitResultSlot(planstate, tts_ops);
1805 }
1806 
1807 /* ----------------
1808  * ExecInitScanTupleSlot
1809  * ----------------
1810  */
1811 void
1813  TupleDesc tupledesc, const TupleTableSlotOps *tts_ops)
1814 {
1815  scanstate->ss_ScanTupleSlot = ExecAllocTableSlot(&estate->es_tupleTable,
1816  tupledesc, tts_ops);
1817  scanstate->ps.scandesc = tupledesc;
1818  scanstate->ps.scanopsfixed = tupledesc != NULL;
1819  scanstate->ps.scanops = tts_ops;
1820  scanstate->ps.scanopsset = true;
1821 }
1822 
1823 /* ----------------
1824  * ExecInitExtraTupleSlot
1825  *
1826  * Return a newly created slot. If tupledesc is non-NULL the slot will have
1827  * that as its fixed tupledesc. Otherwise the caller needs to use
1828  * ExecSetSlotDescriptor() to set the descriptor before use.
1829  * ----------------
1830  */
1833  TupleDesc tupledesc,
1834  const TupleTableSlotOps *tts_ops)
1835 {
1836  return ExecAllocTableSlot(&estate->es_tupleTable, tupledesc, tts_ops);
1837 }
1838 
1839 /* ----------------
1840  * ExecInitNullTupleSlot
1841  *
1842  * Build a slot containing an all-nulls tuple of the given type.
1843  * This is used as a substitute for an input tuple when performing an
1844  * outer join.
1845  * ----------------
1846  */
1849  const TupleTableSlotOps *tts_ops)
1850 {
1851  TupleTableSlot *slot = ExecInitExtraTupleSlot(estate, tupType, tts_ops);
1852 
1853  return ExecStoreAllNullTuple(slot);
1854 }
1855 
1856 /* ---------------------------------------------------------------
1857  * Routines for setting/accessing attributes in a slot.
1858  * ---------------------------------------------------------------
1859  */
1860 
1861 /*
1862  * Fill in missing values for a TupleTableSlot.
1863  *
1864  * This is only exposed because it's needed for JIT compiled tuple
1865  * deforming. That exception aside, there should be no callers outside of this
1866  * file.
1867  */
1868 void
1869 slot_getmissingattrs(TupleTableSlot *slot, int startAttNum, int lastAttNum)
1870 {
1871  AttrMissing *attrmiss = NULL;
1872 
1873  if (slot->tts_tupleDescriptor->constr)
1874  attrmiss = slot->tts_tupleDescriptor->constr->missing;
1875 
1876  if (!attrmiss)
1877  {
1878  /* no missing values array at all, so just fill everything in as NULL */
1879  memset(slot->tts_values + startAttNum, 0,
1880  (lastAttNum - startAttNum) * sizeof(Datum));
1881  memset(slot->tts_isnull + startAttNum, 1,
1882  (lastAttNum - startAttNum) * sizeof(bool));
1883  }
1884  else
1885  {
1886  int missattnum;
1887 
1888  /* if there is a missing values array we must process them one by one */
1889  for (missattnum = startAttNum;
1890  missattnum < lastAttNum;
1891  missattnum++)
1892  {
1893  slot->tts_values[missattnum] = attrmiss[missattnum].am_value;
1894  slot->tts_isnull[missattnum] = !attrmiss[missattnum].am_present;
1895  }
1896  }
1897 }
1898 
1899 /*
1900  * slot_getsomeattrs_int - workhorse for slot_getsomeattrs()
1901  */
1902 void
1904 {
1905  /* Check for caller errors */
1906  Assert(slot->tts_nvalid < attnum); /* checked in slot_getsomeattrs */
1907  Assert(attnum > 0);
1908 
1909  if (unlikely(attnum > slot->tts_tupleDescriptor->natts))
1910  elog(ERROR, "invalid attribute number %d", attnum);
1911 
1912  /* Fetch as many attributes as possible from the underlying tuple. */
1913  slot->tts_ops->getsomeattrs(slot, attnum);
1914 
1915  /*
1916  * If the underlying tuple doesn't have enough attributes, tuple
1917  * descriptor must have the missing attributes.
1918  */
1919  if (unlikely(slot->tts_nvalid < attnum))
1920  {
1921  slot_getmissingattrs(slot, slot->tts_nvalid, attnum);
1922  slot->tts_nvalid = attnum;
1923  }
1924 }
1925 
1926 /* ----------------------------------------------------------------
1927  * ExecTypeFromTL
1928  *
1929  * Generate a tuple descriptor for the result tuple of a targetlist.
1930  * (A parse/plan tlist must be passed, not an ExprState tlist.)
1931  * Note that resjunk columns, if any, are included in the result.
1932  *
1933  * Currently there are about 4 different places where we create
1934  * TupleDescriptors. They should all be merged, or perhaps
1935  * be rewritten to call BuildDesc().
1936  * ----------------------------------------------------------------
1937  */
1938 TupleDesc
1939 ExecTypeFromTL(List *targetList)
1940 {
1941  return ExecTypeFromTLInternal(targetList, false);
1942 }
1943 
1944 /* ----------------------------------------------------------------
1945  * ExecCleanTypeFromTL
1946  *
1947  * Same as above, but resjunk columns are omitted from the result.
1948  * ----------------------------------------------------------------
1949  */
1950 TupleDesc
1952 {
1953  return ExecTypeFromTLInternal(targetList, true);
1954 }
1955 
1956 static TupleDesc
1957 ExecTypeFromTLInternal(List *targetList, bool skipjunk)
1958 {
1959  TupleDesc typeInfo;
1960  ListCell *l;
1961  int len;
1962  int cur_resno = 1;
1963 
1964  if (skipjunk)
1965  len = ExecCleanTargetListLength(targetList);
1966  else
1967  len = ExecTargetListLength(targetList);
1968  typeInfo = CreateTemplateTupleDesc(len);
1969 
1970  foreach(l, targetList)
1971  {
1972  TargetEntry *tle = lfirst(l);
1973 
1974  if (skipjunk && tle->resjunk)
1975  continue;
1976  TupleDescInitEntry(typeInfo,
1977  cur_resno,
1978  tle->resname,
1979  exprType((Node *) tle->expr),
1980  exprTypmod((Node *) tle->expr),
1981  0);
1982  TupleDescInitEntryCollation(typeInfo,
1983  cur_resno,
1984  exprCollation((Node *) tle->expr));
1985  cur_resno++;
1986  }
1987 
1988  return typeInfo;
1989 }
1990 
1991 /*
1992  * ExecTypeFromExprList - build a tuple descriptor from a list of Exprs
1993  *
1994  * This is roughly like ExecTypeFromTL, but we work from bare expressions
1995  * not TargetEntrys. No names are attached to the tupledesc's columns.
1996  */
1997 TupleDesc
1999 {
2000  TupleDesc typeInfo;
2001  ListCell *lc;
2002  int cur_resno = 1;
2003 
2004  typeInfo = CreateTemplateTupleDesc(list_length(exprList));
2005 
2006  foreach(lc, exprList)
2007  {
2008  Node *e = lfirst(lc);
2009 
2010  TupleDescInitEntry(typeInfo,
2011  cur_resno,
2012  NULL,
2013  exprType(e),
2014  exprTypmod(e),
2015  0);
2016  TupleDescInitEntryCollation(typeInfo,
2017  cur_resno,
2018  exprCollation(e));
2019  cur_resno++;
2020  }
2021 
2022  return typeInfo;
2023 }
2024 
2025 /*
2026  * ExecTypeSetColNames - set column names in a RECORD TupleDesc
2027  *
2028  * Column names must be provided as an alias list (list of String nodes).
2029  */
2030 void
2031 ExecTypeSetColNames(TupleDesc typeInfo, List *namesList)
2032 {
2033  int colno = 0;
2034  ListCell *lc;
2035 
2036  /* It's only OK to change col names in a not-yet-blessed RECORD type */
2037  Assert(typeInfo->tdtypeid == RECORDOID);
2038  Assert(typeInfo->tdtypmod < 0);
2039 
2040  foreach(lc, namesList)
2041  {
2042  char *cname = strVal(lfirst(lc));
2043  Form_pg_attribute attr;
2044 
2045  /* Guard against too-long names list (probably can't happen) */
2046  if (colno >= typeInfo->natts)
2047  break;
2048  attr = TupleDescAttr(typeInfo, colno);
2049  colno++;
2050 
2051  /*
2052  * Do nothing for empty aliases or dropped columns (these cases
2053  * probably can't arise in RECORD types, either)
2054  */
2055  if (cname[0] == '\0' || attr->attisdropped)
2056  continue;
2057 
2058  /* OK, assign the column name */
2059  namestrcpy(&(attr->attname), cname);
2060  }
2061 }
2062 
2063 /*
2064  * BlessTupleDesc - make a completed tuple descriptor useful for SRFs
2065  *
2066  * Rowtype Datums returned by a function must contain valid type information.
2067  * This happens "for free" if the tupdesc came from a relcache entry, but
2068  * not if we have manufactured a tupdesc for a transient RECORD datatype.
2069  * In that case we have to notify typcache.c of the existence of the type.
2070  */
2071 TupleDesc
2073 {
2074  if (tupdesc->tdtypeid == RECORDOID &&
2075  tupdesc->tdtypmod < 0)
2076  assign_record_type_typmod(tupdesc);
2077 
2078  return tupdesc; /* just for notational convenience */
2079 }
2080 
2081 /*
2082  * TupleDescGetAttInMetadata - Build an AttInMetadata structure based on the
2083  * supplied TupleDesc. AttInMetadata can be used in conjunction with C strings
2084  * to produce a properly formed tuple.
2085  */
2086 AttInMetadata *
2088 {
2089  int natts = tupdesc->natts;
2090  int i;
2091  Oid atttypeid;
2092  Oid attinfuncid;
2093  FmgrInfo *attinfuncinfo;
2094  Oid *attioparams;
2095  int32 *atttypmods;
2096  AttInMetadata *attinmeta;
2097 
2098  attinmeta = (AttInMetadata *) palloc(sizeof(AttInMetadata));
2099 
2100  /* "Bless" the tupledesc so that we can make rowtype datums with it */
2101  attinmeta->tupdesc = BlessTupleDesc(tupdesc);
2102 
2103  /*
2104  * Gather info needed later to call the "in" function for each attribute
2105  */
2106  attinfuncinfo = (FmgrInfo *) palloc0(natts * sizeof(FmgrInfo));
2107  attioparams = (Oid *) palloc0(natts * sizeof(Oid));
2108  atttypmods = (int32 *) palloc0(natts * sizeof(int32));
2109 
2110  for (i = 0; i < natts; i++)
2111  {
2112  Form_pg_attribute att = TupleDescAttr(tupdesc, i);
2113 
2114  /* Ignore dropped attributes */
2115  if (!att->attisdropped)
2116  {
2117  atttypeid = att->atttypid;
2118  getTypeInputInfo(atttypeid, &attinfuncid, &attioparams[i]);
2119  fmgr_info(attinfuncid, &attinfuncinfo[i]);
2120  atttypmods[i] = att->atttypmod;
2121  }
2122  }
2123  attinmeta->attinfuncs = attinfuncinfo;
2124  attinmeta->attioparams = attioparams;
2125  attinmeta->atttypmods = atttypmods;
2126 
2127  return attinmeta;
2128 }
2129 
2130 /*
2131  * BuildTupleFromCStrings - build a HeapTuple given user data in C string form.
2132  * values is an array of C strings, one for each attribute of the return tuple.
2133  * A NULL string pointer indicates we want to create a NULL field.
2134  */
2135 HeapTuple
2137 {
2138  TupleDesc tupdesc = attinmeta->tupdesc;
2139  int natts = tupdesc->natts;
2140  Datum *dvalues;
2141  bool *nulls;
2142  int i;
2143  HeapTuple tuple;
2144 
2145  dvalues = (Datum *) palloc(natts * sizeof(Datum));
2146  nulls = (bool *) palloc(natts * sizeof(bool));
2147 
2148  /*
2149  * Call the "in" function for each non-dropped attribute, even for nulls,
2150  * to support domains.
2151  */
2152  for (i = 0; i < natts; i++)
2153  {
2154  if (!TupleDescAttr(tupdesc, i)->attisdropped)
2155  {
2156  /* Non-dropped attributes */
2157  dvalues[i] = InputFunctionCall(&attinmeta->attinfuncs[i],
2158  values[i],
2159  attinmeta->attioparams[i],
2160  attinmeta->atttypmods[i]);
2161  if (values[i] != NULL)
2162  nulls[i] = false;
2163  else
2164  nulls[i] = true;
2165  }
2166  else
2167  {
2168  /* Handle dropped attributes by setting to NULL */
2169  dvalues[i] = (Datum) 0;
2170  nulls[i] = true;
2171  }
2172  }
2173 
2174  /*
2175  * Form a tuple
2176  */
2177  tuple = heap_form_tuple(tupdesc, dvalues, nulls);
2178 
2179  /*
2180  * Release locally palloc'd space. XXX would probably be good to pfree
2181  * values of pass-by-reference datums, as well.
2182  */
2183  pfree(dvalues);
2184  pfree(nulls);
2185 
2186  return tuple;
2187 }
2188 
2189 /*
2190  * HeapTupleHeaderGetDatum - convert a HeapTupleHeader pointer to a Datum.
2191  *
2192  * This must *not* get applied to an on-disk tuple; the tuple should be
2193  * freshly made by heap_form_tuple or some wrapper routine for it (such as
2194  * BuildTupleFromCStrings). Be sure also that the tupledesc used to build
2195  * the tuple has a properly "blessed" rowtype.
2196  *
2197  * Formerly this was a macro equivalent to PointerGetDatum, relying on the
2198  * fact that heap_form_tuple fills in the appropriate tuple header fields
2199  * for a composite Datum. However, we now require that composite Datums not
2200  * contain any external TOAST pointers. We do not want heap_form_tuple itself
2201  * to enforce that; more specifically, the rule applies only to actual Datums
2202  * and not to HeapTuple structures. Therefore, HeapTupleHeaderGetDatum is
2203  * now a function that detects whether there are externally-toasted fields
2204  * and constructs a new tuple with inlined fields if so. We still need
2205  * heap_form_tuple to insert the Datum header fields, because otherwise this
2206  * code would have no way to obtain a tupledesc for the tuple.
2207  *
2208  * Note that if we do build a new tuple, it's palloc'd in the current
2209  * memory context. Beware of code that changes context between the initial
2210  * heap_form_tuple/etc call and calling HeapTuple(Header)GetDatum.
2211  *
2212  * For performance-critical callers, it could be worthwhile to take extra
2213  * steps to ensure that there aren't TOAST pointers in the output of
2214  * heap_form_tuple to begin with. It's likely however that the costs of the
2215  * typcache lookup and tuple disassembly/reassembly are swamped by TOAST
2216  * dereference costs, so that the benefits of such extra effort would be
2217  * minimal.
2218  *
2219  * XXX it would likely be better to create wrapper functions that produce
2220  * a composite Datum from the field values in one step. However, there's
2221  * enough code using the existing APIs that we couldn't get rid of this
2222  * hack anytime soon.
2223  */
2224 Datum
2226 {
2227  Datum result;
2228  TupleDesc tupDesc;
2229 
2230  /* No work if there are no external TOAST pointers in the tuple */
2231  if (!HeapTupleHeaderHasExternal(tuple))
2232  return PointerGetDatum(tuple);
2233 
2234  /* Use the type data saved by heap_form_tuple to look up the rowtype */
2236  HeapTupleHeaderGetTypMod(tuple));
2237 
2238  /* And do the flattening */
2239  result = toast_flatten_tuple_to_datum(tuple,
2241  tupDesc);
2242 
2243  ReleaseTupleDesc(tupDesc);
2244 
2245  return result;
2246 }
2247 
2248 
2249 /*
2250  * Functions for sending tuples to the frontend (or other specified destination)
2251  * as though it is a SELECT result. These are used by utility commands that
2252  * need to project directly to the destination and don't need or want full
2253  * table function capability. Currently used by EXPLAIN and SHOW ALL.
2254  */
2257  TupleDesc tupdesc,
2258  const TupleTableSlotOps *tts_ops)
2259 {
2260  TupOutputState *tstate;
2261 
2262  tstate = (TupOutputState *) palloc(sizeof(TupOutputState));
2263 
2264  tstate->slot = MakeSingleTupleTableSlot(tupdesc, tts_ops);
2265  tstate->dest = dest;
2266 
2267  tstate->dest->rStartup(tstate->dest, (int) CMD_SELECT, tupdesc);
2268 
2269  return tstate;
2270 }
2271 
2272 /*
2273  * write a single tuple
2274  */
2275 void
2276 do_tup_output(TupOutputState *tstate, Datum *values, bool *isnull)
2277 {
2278  TupleTableSlot *slot = tstate->slot;
2279  int natts = slot->tts_tupleDescriptor->natts;
2280 
2281  /* make sure the slot is clear */
2282  ExecClearTuple(slot);
2283 
2284  /* insert data */
2285  memcpy(slot->tts_values, values, natts * sizeof(Datum));
2286  memcpy(slot->tts_isnull, isnull, natts * sizeof(bool));
2287 
2288  /* mark slot as containing a virtual tuple */
2289  ExecStoreVirtualTuple(slot);
2290 
2291  /* send the tuple to the receiver */
2292  (void) tstate->dest->receiveSlot(slot, tstate->dest);
2293 
2294  /* clean up */
2295  ExecClearTuple(slot);
2296 }
2297 
2298 /*
2299  * write a chunk of text, breaking at newline characters
2300  *
2301  * Should only be used with a single-TEXT-attribute tupdesc.
2302  */
2303 void
2304 do_text_output_multiline(TupOutputState *tstate, const char *txt)
2305 {
2306  Datum values[1];
2307  bool isnull[1] = {false};
2308 
2309  while (*txt)
2310  {
2311  const char *eol;
2312  int len;
2313 
2314  eol = strchr(txt, '\n');
2315  if (eol)
2316  {
2317  len = eol - txt;
2318  eol++;
2319  }
2320  else
2321  {
2322  len = strlen(txt);
2323  eol = txt + len;
2324  }
2325 
2327  do_tup_output(tstate, values, isnull);
2329  txt = eol;
2330  }
2331 }
2332 
2333 void
2335 {
2336  tstate->dest->rShutdown(tstate->dest);
2337  /* note that destroying the dest is not ours to do */
2339  pfree(tstate);
2340 }
static Datum values[MAXATTR]
Definition: bootstrap.c:156
int Buffer
Definition: buf.h:23
#define InvalidBuffer
Definition: buf.h:25
void IncrBufferRefCount(Buffer buffer)
Definition: bufmgr.c:4512
void ReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:4480
static bool BufferIsValid(Buffer bufnum)
Definition: bufmgr.h:301
unsigned int uint32
Definition: c.h:495
#define Min(x, y)
Definition: c.h:993
#define likely(x)
Definition: c.h:299
#define MAXALIGN(LEN)
Definition: c.h:800
signed int int32
Definition: c.h:483
#define pg_attribute_always_inline
Definition: c.h:223
uint8 bits8
Definition: c.h:502
#define unlikely(x)
Definition: c.h:300
#define MemSet(start, val, len)
Definition: c.h:1009
size_t Size
Definition: c.h:594
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
static void tts_heap_store_tuple(TupleTableSlot *slot, HeapTuple tuple, bool shouldFree)
Definition: execTuples.c:448
static void tts_buffer_heap_copyslot(TupleTableSlot *dstslot, TupleTableSlot *srcslot)
Definition: execTuples.c:779
static void tts_buffer_heap_store_tuple(TupleTableSlot *slot, HeapTuple tuple, Buffer buffer, bool transfer_pin)
Definition: execTuples.c:860
static HeapTuple tts_minimal_copy_heap_tuple(TupleTableSlot *slot)
Definition: execTuples.c:599
void ExecResetTupleTable(List *tupleTable, bool shouldFree)
Definition: execTuples.c:1192
TupleDesc BlessTupleDesc(TupleDesc tupdesc)
Definition: execTuples.c:2072
static Datum tts_heap_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
Definition: execTuples.c:340
static HeapTuple tts_buffer_heap_copy_heap_tuple(TupleTableSlot *slot)
Definition: execTuples.c:834
HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values)
Definition: execTuples.c:2136
static void tts_buffer_heap_clear(TupleTableSlot *slot)
Definition: execTuples.c:660
AttInMetadata * TupleDescGetAttInMetadata(TupleDesc tupdesc)
Definition: execTuples.c:2087
static void tts_minimal_store_tuple(TupleTableSlot *slot, MinimalTuple mtup, bool shouldFree)
Definition: execTuples.c:621
TupleTableSlot * MakeTupleTableSlot(TupleDesc tupleDesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1113
const TupleTableSlotOps TTSOpsVirtual
Definition: execTuples.c:83
TupleTableSlot * ExecStoreVirtualTuple(TupleTableSlot *slot)
Definition: execTuples.c:1553
void ExecDropSingleTupleTableSlot(TupleTableSlot *slot)
Definition: execTuples.c:1255
static MinimalTuple tts_heap_copy_minimal_tuple(TupleTableSlot *slot)
Definition: execTuples.c:437
static Datum tts_buffer_heap_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
Definition: execTuples.c:700
TupleTableSlot * ExecStoreBufferHeapTuple(HeapTuple tuple, TupleTableSlot *slot, Buffer buffer)
Definition: execTuples.c:1393
static void tts_minimal_init(TupleTableSlot *slot)
Definition: execTuples.c:470
static void tts_heap_init(TupleTableSlot *slot)
Definition: execTuples.c:301
static MinimalTuple tts_minimal_copy_minimal_tuple(TupleTableSlot *slot)
Definition: execTuples.c:610
Datum HeapTupleHeaderGetDatum(HeapTupleHeader tuple)
Definition: execTuples.c:2225
static TupleDesc ExecTypeFromTLInternal(List *targetList, bool skipjunk)
Definition: execTuples.c:1957
static HeapTuple tts_buffer_heap_get_heap_tuple(TupleTableSlot *slot)
Definition: execTuples.c:821
TupleDesc ExecCleanTypeFromTL(List *targetList)
Definition: execTuples.c:1951
static HeapTuple tts_virtual_copy_heap_tuple(TupleTableSlot *slot)
Definition: execTuples.c:276
void ExecInitResultSlot(PlanState *planstate, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1780
TupleTableSlot * ExecInitNullTupleSlot(EState *estate, TupleDesc tupType, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1848
void ExecTypeSetColNames(TupleDesc typeInfo, List *namesList)
Definition: execTuples.c:2031
void ExecForceStoreMinimalTuple(MinimalTuple mtup, TupleTableSlot *slot, bool shouldFree)
Definition: execTuples.c:1513
const TupleTableSlotOps TTSOpsBufferHeapTuple
Definition: execTuples.c:86
static void tts_buffer_heap_release(TupleTableSlot *slot)
Definition: execTuples.c:655
void end_tup_output(TupOutputState *tstate)
Definition: execTuples.c:2334
static void tts_minimal_clear(TupleTableSlot *slot)
Definition: execTuples.c:487
MinimalTuple ExecFetchSlotMinimalTuple(TupleTableSlot *slot, bool *shouldFree)
Definition: execTuples.c:1693
TupleTableSlot * ExecStoreAllNullTuple(TupleTableSlot *slot)
Definition: execTuples.c:1577
TupleTableSlot * ExecStoreMinimalTuple(MinimalTuple mtup, TupleTableSlot *slot, bool shouldFree)
Definition: execTuples.c:1447
void ExecInitScanTupleSlot(EState *estate, ScanState *scanstate, TupleDesc tupledesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1812
void ExecInitResultTypeTL(PlanState *planstate)
Definition: execTuples.c:1756
static void tts_virtual_clear(TupleTableSlot *slot)
Definition: execTuples.c:107
static void tts_buffer_heap_materialize(TupleTableSlot *slot)
Definition: execTuples.c:720
void do_text_output_multiline(TupOutputState *tstate, const char *txt)
Definition: execTuples.c:2304
static void tts_virtual_release(TupleTableSlot *slot)
Definition: execTuples.c:102
HeapTuple ExecFetchSlotHeapTuple(TupleTableSlot *slot, bool materialize, bool *shouldFree)
Definition: execTuples.c:1645
void slot_getmissingattrs(TupleTableSlot *slot, int startAttNum, int lastAttNum)
Definition: execTuples.c:1869
TupleTableSlot * ExecInitExtraTupleSlot(EState *estate, TupleDesc tupledesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1832
static void tts_minimal_materialize(TupleTableSlot *slot)
Definition: execTuples.c:527
static MinimalTuple tts_buffer_heap_copy_minimal_tuple(TupleTableSlot *slot)
Definition: execTuples.c:847
static MinimalTuple tts_minimal_get_minimal_tuple(TupleTableSlot *slot)
Definition: execTuples.c:588
static void tts_minimal_copyslot(TupleTableSlot *dstslot, TupleTableSlot *srcslot)
Definition: execTuples.c:575
TupleTableSlot * ExecStoreHeapTuple(HeapTuple tuple, TupleTableSlot *slot, bool shouldFree)
Definition: execTuples.c:1353
static void tts_virtual_init(TupleTableSlot *slot)
Definition: execTuples.c:97
void ExecStoreHeapTupleDatum(Datum data, TupleTableSlot *slot)
Definition: execTuples.c:1607
void ExecSetSlotDescriptor(TupleTableSlot *slot, TupleDesc tupdesc)
Definition: execTuples.c:1290
void ExecInitResultTupleSlotTL(PlanState *planstate, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1800
static void tts_minimal_release(TupleTableSlot *slot)
Definition: execTuples.c:482
Datum ExecFetchSlotHeapTupleDatum(TupleTableSlot *slot)
Definition: execTuples.c:1724
const TupleTableSlotOps TTSOpsHeapTuple
Definition: execTuples.c:84
static HeapTuple tts_heap_copy_heap_tuple(TupleTableSlot *slot)
Definition: execTuples.c:425
void slot_getsomeattrs_int(TupleTableSlot *slot, int attnum)
Definition: execTuples.c:1903
static Datum tts_minimal_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
Definition: execTuples.c:515
const TupleTableSlotOps TTSOpsMinimalTuple
Definition: execTuples.c:85
static pg_attribute_always_inline void slot_deform_heap_tuple(TupleTableSlot *slot, HeapTuple tuple, uint32 *offp, int natts)
Definition: execTuples.c:926
static void tts_virtual_copyslot(TupleTableSlot *dstslot, TupleTableSlot *srcslot)
Definition: execTuples.c:252
static void tts_buffer_heap_getsomeattrs(TupleTableSlot *slot, int natts)
Definition: execTuples.c:690
void do_tup_output(TupOutputState *tstate, Datum *values, bool *isnull)
Definition: execTuples.c:2276
TupleTableSlot * ExecStorePinnedBufferHeapTuple(HeapTuple tuple, TupleTableSlot *slot, Buffer buffer)
Definition: execTuples.c:1419
static void tts_virtual_getsomeattrs(TupleTableSlot *slot, int natts)
Definition: execTuples.c:129
TupOutputState * begin_tup_output_tupdesc(DestReceiver *dest, TupleDesc tupdesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:2256
TupleDesc ExecTypeFromExprList(List *exprList)
Definition: execTuples.c:1998
static void tts_heap_materialize(TupleTableSlot *slot)
Definition: execTuples.c:360
static MinimalTuple tts_virtual_copy_minimal_tuple(TupleTableSlot *slot)
Definition: execTuples.c:286
static void tts_virtual_materialize(TupleTableSlot *slot)
Definition: execTuples.c:159
TupleDesc ExecTypeFromTL(List *targetList)
Definition: execTuples.c:1939
static HeapTuple tts_heap_get_heap_tuple(TupleTableSlot *slot)
Definition: execTuples.c:413
static void tts_minimal_getsomeattrs(TupleTableSlot *slot, int natts)
Definition: execTuples.c:505
TupleTableSlot * ExecAllocTableSlot(List **tupleTable, TupleDesc desc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1172
static void tts_heap_copyslot(TupleTableSlot *dstslot, TupleTableSlot *srcslot)
Definition: execTuples.c:400
static void tts_heap_clear(TupleTableSlot *slot)
Definition: execTuples.c:311
static void tts_heap_getsomeattrs(TupleTableSlot *slot, int natts)
Definition: execTuples.c:330
static void tts_heap_release(TupleTableSlot *slot)
Definition: execTuples.c:306
static void tts_buffer_heap_init(TupleTableSlot *slot)
Definition: execTuples.c:650
TupleTableSlot * MakeSingleTupleTableSlot(TupleDesc tupdesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1239
void ExecForceStoreHeapTuple(HeapTuple tuple, TupleTableSlot *slot, bool shouldFree)
Definition: execTuples.c:1470
static Datum tts_virtual_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
Definition: execTuples.c:140
int ExecTargetListLength(List *targetlist)
Definition: execUtils.c:1114
int ExecCleanTargetListLength(List *targetlist)
Definition: execUtils.c:1124
ExpandedObjectHeader * DatumGetEOHP(Datum d)
Definition: expandeddatum.c:29
void EOH_flatten_into(ExpandedObjectHeader *eohptr, void *result, Size allocated_size)
Definition: expandeddatum.c:81
Size EOH_get_flat_size(ExpandedObjectHeader *eohptr)
Definition: expandeddatum.c:75
Datum InputFunctionCall(FmgrInfo *flinfo, char *str, Oid typioparam, int32 typmod)
Definition: fmgr.c:1513
void fmgr_info(Oid functionId, FmgrInfo *finfo)
Definition: fmgr.c:127
#define DatumGetHeapTupleHeader(X)
Definition: fmgr.h:295
Datum toast_flatten_tuple_to_datum(HeapTupleHeader tup, uint32 tup_len, TupleDesc tupleDesc)
Definition: heaptoast.c:449
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, Datum *values, bool *isnull)
Definition: heaptuple.c:1108
HeapTuple heap_copytuple(HeapTuple tuple)
Definition: heaptuple.c:768
MinimalTuple minimal_tuple_from_heap_tuple(HeapTuple htup)
Definition: heaptuple.c:1568
Datum heap_getsysattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
Definition: heaptuple.c:715
MinimalTuple heap_form_minimal_tuple(TupleDesc tupleDescriptor, Datum *values, bool *isnull)
Definition: heaptuple.c:1444
void heap_free_minimal_tuple(MinimalTuple mtup)
Definition: heaptuple.c:1515
void heap_deform_tuple(HeapTuple tuple, TupleDesc tupleDesc, Datum *values, bool *isnull)
Definition: heaptuple.c:1337
MinimalTuple heap_copy_minimal_tuple(MinimalTuple mtup)
Definition: heaptuple.c:1527
Datum heap_copy_tuple_as_datum(HeapTuple tuple, TupleDesc tupleDesc)
Definition: heaptuple.c:1072
HeapTuple heap_tuple_from_minimal_tuple(MinimalTuple mtup)
Definition: heaptuple.c:1546
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1426
HeapTupleHeaderData * HeapTupleHeader
Definition: htup.h:23
#define MINIMAL_TUPLE_OFFSET
Definition: htup_details.h:617
#define HeapTupleHeaderGetTypMod(tup)
Definition: htup_details.h:466
#define HeapTupleHeaderGetNatts(tup)
Definition: htup_details.h:529
#define HeapTupleHeaderGetTypeId(tup)
Definition: htup_details.h:456
#define HeapTupleHeaderGetDatumLength(tup)
Definition: htup_details.h:450
#define HeapTupleHeaderHasExternal(tup)
Definition: htup_details.h:537
#define HeapTupleHasNulls(tuple)
Definition: htup_details.h:659
long val
Definition: informix.c:664
int init
Definition: isn.c:75
int i
Definition: isn.c:73
static void ItemPointerSetInvalid(ItemPointerData *pointer)
Definition: itemptr.h:184
Assert(fmt[strlen(fmt) - 1] !='\n')
List * lappend(List *list, void *datum)
Definition: list.c:338
void list_free(List *list)
Definition: list.c:1545
void getTypeInputInfo(Oid type, Oid *typInput, Oid *typIOParam)
Definition: lsyscache.c:2856
void pfree(void *pointer)
Definition: mcxt.c:1456
void * palloc0(Size size)
Definition: mcxt.c:1257
MemoryContext CurrentMemoryContext
Definition: mcxt.c:135
void * MemoryContextAlloc(MemoryContext context, Size size)
Definition: mcxt.c:1021
void * palloc(Size size)
Definition: mcxt.c:1226
void namestrcpy(Name name, const char *str)
Definition: name.c:233
Oid exprType(const Node *expr)
Definition: nodeFuncs.c:43
int32 exprTypmod(const Node *expr)
Definition: nodeFuncs.c:282
Oid exprCollation(const Node *expr)
Definition: nodeFuncs.c:786
#define IsA(nodeptr, _type_)
Definition: nodes.h:179
@ CMD_SELECT
Definition: nodes.h:276
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:138
int16 attnum
Definition: pg_attribute.h:74
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
const void size_t len
const void * data
#define lfirst(lc)
Definition: pg_list.h:172
#define lfirst_node(type, lc)
Definition: pg_list.h:176
static int list_length(const List *l)
Definition: pg_list.h:152
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
uintptr_t Datum
Definition: postgres.h:64
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
unsigned int Oid
Definition: postgres_ext.h:31
e
Definition: preproc-init.c:82
FmgrInfo * attinfuncs
Definition: funcapi.h:41
TupleDesc tupdesc
Definition: funcapi.h:38
Oid * attioparams
Definition: funcapi.h:44
int32 * atttypmods
Definition: funcapi.h:47
List * es_tupleTable
Definition: execnodes.h:661
Definition: fmgr.h:57
ItemPointerData t_self
Definition: htup.h:65
uint32 t_len
Definition: htup.h:64
HeapTupleHeader t_data
Definition: htup.h:68
Oid t_tableOid
Definition: htup.h:66
ItemPointerData t_ctid
Definition: htup_details.h:161
bits8 t_bits[FLEXIBLE_ARRAY_MEMBER]
Definition: htup_details.h:178
HeapTuple tuple
Definition: tuptable.h:253
Definition: pg_list.h:54
HeapTupleData minhdr
Definition: tuptable.h:291
MinimalTuple mintuple
Definition: tuptable.h:290
Definition: nodes.h:129
const TupleTableSlotOps * resultops
Definition: execnodes.h:1114
bool resultopsset
Definition: execnodes.h:1122
const TupleTableSlotOps * scanops
Definition: execnodes.h:1111
Plan * plan
Definition: execnodes.h:1037
EState * state
Definition: execnodes.h:1039
TupleDesc ps_ResultTupleDesc
Definition: execnodes.h:1074
bool scanopsset
Definition: execnodes.h:1119
TupleTableSlot * ps_ResultTupleSlot
Definition: execnodes.h:1075
TupleDesc scandesc
Definition: execnodes.h:1086
bool scanopsfixed
Definition: execnodes.h:1115
bool resultopsfixed
Definition: execnodes.h:1118
List * targetlist
Definition: plannodes.h:153
TupleTableSlot * ss_ScanTupleSlot
Definition: execnodes.h:1477
PlanState ps
Definition: execnodes.h:1474
Expr * expr
Definition: primnodes.h:1895
TupleTableSlot * slot
Definition: executor.h:505
DestReceiver * dest
Definition: executor.h:506
struct AttrMissing * missing
Definition: tupdesc.h:41
TupleConstr * constr
Definition: tupdesc.h:85
int32 tdtypmod
Definition: tupdesc.h:83
Oid tdtypeid
Definition: tupdesc.h:82
size_t base_slot_size
Definition: tuptable.h:137
HeapTuple(* get_heap_tuple)(TupleTableSlot *slot)
Definition: tuptable.h:187
void(* init)(TupleTableSlot *slot)
Definition: tuptable.h:140
MinimalTuple(* copy_minimal_tuple)(TupleTableSlot *slot)
Definition: tuptable.h:215
void(* getsomeattrs)(TupleTableSlot *slot, int natts)
Definition: tuptable.h:160
HeapTuple(* copy_heap_tuple)(TupleTableSlot *slot)
Definition: tuptable.h:205
MinimalTuple(* get_minimal_tuple)(TupleTableSlot *slot)
Definition: tuptable.h:195
void(* materialize)(TupleTableSlot *slot)
Definition: tuptable.h:173
void(* release)(TupleTableSlot *slot)
Definition: tuptable.h:143
Oid tts_tableOid
Definition: tuptable.h:130
TupleDesc tts_tupleDescriptor
Definition: tuptable.h:123
const TupleTableSlotOps *const tts_ops
Definition: tuptable.h:121
NodeTag type
Definition: tuptable.h:116
MemoryContext tts_mcxt
Definition: tuptable.h:128
AttrNumber tts_nvalid
Definition: tuptable.h:120
bool * tts_isnull
Definition: tuptable.h:127
ItemPointerData tts_tid
Definition: tuptable.h:129
Datum * tts_values
Definition: tuptable.h:125
uint16 tts_flags
Definition: tuptable.h:118
void(* rStartup)(DestReceiver *self, int operation, TupleDesc typeinfo)
Definition: dest.h:120
void(* rShutdown)(DestReceiver *self)
Definition: dest.h:123
bool(* receiveSlot)(TupleTableSlot *slot, DestReceiver *self)
Definition: dest.h:117
TupleDesc CreateTemplateTupleDesc(int natts)
Definition: tupdesc.c:45
void TupleDescInitEntryCollation(TupleDesc desc, AttrNumber attributeNumber, Oid collationid)
Definition: tupdesc.c:767
void TupleDescInitEntry(TupleDesc desc, AttrNumber attributeNumber, const char *attributeName, Oid oidtypeid, int32 typmod, int attdim)
Definition: tupdesc.c:583
#define ReleaseTupleDesc(tupdesc)
Definition: tupdesc.h:122
#define PinTupleDesc(tupdesc)
Definition: tupdesc.h:116
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92
#define att_align_pointer(cur_offset, attalign, attlen, attptr)
Definition: tupmacs.h:107
#define att_align_nominal(cur_offset, attalign)
Definition: tupmacs.h:129
static bool att_isnull(int ATT, const bits8 *BITS)
Definition: tupmacs.h:26
#define att_addlength_pointer(cur_offset, attlen, attptr)
Definition: tupmacs.h:157
#define fetchatt(A, T)
Definition: tupmacs.h:46
#define att_addlength_datum(cur_offset, attlen, attdatum)
Definition: tupmacs.h:145
#define TTS_FLAG_EMPTY
Definition: tuptable.h:95
#define TTS_FLAG_SLOW
Definition: tuptable.h:103
#define TTS_FLAG_SHOULDFREE
Definition: tuptable.h:99
#define TTS_IS_MINIMALTUPLE(slot)
Definition: tuptable.h:229
static MinimalTuple ExecCopySlotMinimalTuple(TupleTableSlot *slot)
Definition: tuptable.h:470
static TupleTableSlot * ExecClearTuple(TupleTableSlot *slot)
Definition: tuptable.h:432
#define TTS_FLAG_FIXED
Definition: tuptable.h:107
#define TTS_EMPTY(slot)
Definition: tuptable.h:96
struct MinimalTupleTableSlot MinimalTupleTableSlot
static HeapTuple ExecCopySlotHeapTuple(TupleTableSlot *slot)
Definition: tuptable.h:459
#define TTS_IS_BUFFERTUPLE(slot)
Definition: tuptable.h:230
#define TTS_FIXED(slot)
Definition: tuptable.h:108
static void slot_getallattrs(TupleTableSlot *slot)
Definition: tuptable.h:361
struct HeapTupleTableSlot HeapTupleTableSlot
#define TTS_SHOULDFREE(slot)
Definition: tuptable.h:100
struct BufferHeapTupleTableSlot BufferHeapTupleTableSlot
static void ExecMaterializeSlot(TupleTableSlot *slot)
Definition: tuptable.h:450
#define TTS_SLOW(slot)
Definition: tuptable.h:104
struct VirtualTupleTableSlot VirtualTupleTableSlot
#define TTS_IS_HEAPTUPLE(slot)
Definition: tuptable.h:228
TupleDesc lookup_rowtype_tupdesc(Oid type_id, int32 typmod)
Definition: typcache.c:1830
void assign_record_type_typmod(TupleDesc tupDesc)
Definition: typcache.c:1950
#define strVal(v)
Definition: value.h:82
#define VARATT_IS_EXTERNAL_EXPANDED(PTR)
Definition: varatt.h:298
text * cstring_to_text_with_len(const char *s, int len)
Definition: varlena.c:194