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

Function ExecReScanSeqScan

src/backend/executor/nodeSeqscan.c:284–296  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecReScanSeqScan * * Rescans the relation. * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

282 * ----------------------------------------------------------------
283 */
284void
285ExecReScanSeqScan(SeqScanState *node)
286{
287 TableScanDesc scan;
288
289 scan = node->ss.ss_currentScanDesc;
290
291 if (scan != NULL)
292 table_rescan(scan, /* scan desc */
293 NULL); /* new scan keys */
294
295 ExecScanReScan((ScanState *) node);
296}
297
298/* ----------------------------------------------------------------
299 * Parallel Scan Support

Callers 1

ExecReScanFunction · 0.85

Calls 2

table_rescanFunction · 0.85
ExecScanReScanFunction · 0.85

Tested by

no test coverage detected