MCPcopy Create free account
hub / github.com/apache/cloudberry / MakeSingleTupleTableSlot

Function MakeSingleTupleTableSlot

src/backend/executor/execTuples.c:1254–1261  ·  view source on GitHub ↗

-------------------------------- * MakeSingleTupleTableSlot * * This is a convenience routine for operations that need a standalone * TupleTableSlot not gotten from the main executor tuple table. It makes * a single slot of given TupleTableSlotType and initializes it to use the * given tuple descriptor. * -------------------------------- */

Source from the content-addressed store, hash-verified

1252 * --------------------------------
1253 */
1254TupleTableSlot *
1255MakeSingleTupleTableSlot(TupleDesc tupdesc,
1256 const TupleTableSlotOps *tts_ops)
1257{
1258 TupleTableSlot *slot = MakeTupleTableSlot(tupdesc, tts_ops);
1259
1260 return slot;
1261}
1262
1263/* --------------------------------
1264 * ExecDropSingleTupleTableSlot

Callers 15

ClusteringMethod · 0.85
ClusteringMethod · 0.85
ClusteringMethod · 0.85
CPaxCopyAllTuplesFunction · 0.85
compute_expr_statsFunction · 0.85
make_build_dataFunction · 0.85
RunFromStoreFunction · 0.85
tuplesort_begin_clusterFunction · 0.85
ordered_set_startupFunction · 0.85
RI_Initial_CheckFunction · 0.85

Calls 1

MakeTupleTableSlotFunction · 0.85

Tested by

no test coverage detected