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

Function exec_rt_fetch

src/include/executor/executor.h:616–620  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

614extern void ExecCloseResultRelations(EState *estate);
615
616static inline RangeTblEntry *
617exec_rt_fetch(Index rti, EState *estate)
618{
619 return (RangeTblEntry *) list_nth(estate->es_range_table, rti - 1);
620}
621
622extern Relation ExecGetRangeTableRelation(EState *estate, Index rti);
623extern void ExecInitResultRelation(EState *estate, ResultRelInfo *resultRelInfo,

Callers 15

postgresBeginForeignScanFunction · 0.85
InitPlanFunction · 0.85
ExecInitDynamicSeqScanFunction · 0.85
ExecInitBitmapIndexScanFunction · 0.85
ExecGetInsertedColsFunction · 0.85

Calls 1

list_nthFunction · 0.85

Tested by

no test coverage detected