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

Function ExecReScanSampleScan

src/backend/executor/nodeSamplescan.c:216–226  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecReScanSampleScan * * Rescans the relation. * * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

214 * ----------------------------------------------------------------
215 */
216void
217ExecReScanSampleScan(SampleScanState *node)
218{
219 /* Remember we need to do BeginSampleScan again (if we did it at all) */
220 node->begun = false;
221 node->done = false;
222 node->haveblock = false;
223 node->donetuples = 0;
224
225 ExecScanReScan(&node->ss);
226}
227
228
229/*

Callers 1

ExecReScanFunction · 0.85

Calls 1

ExecScanReScanFunction · 0.85

Tested by

no test coverage detected