---------------------------------------------------------------- * ExecSeqScanReInitializeDSM * * Reset shared state before beginning a fresh scan. * ---------------------------------------------------------------- */
| 365 | * ---------------------------------------------------------------- |
| 366 | */ |
| 367 | void |
| 368 | ExecSeqScanReInitializeDSM(SeqScanState *node, |
| 369 | ParallelContext *pcxt) |
| 370 | { |
| 371 | ParallelTableScanDesc pscan; |
| 372 | |
| 373 | pscan = node->ss.ss_currentScanDesc->rs_parallel; |
| 374 | table_parallelscan_reinitialize(node->ss.ss_currentRelation, pscan); |
| 375 | } |
| 376 | |
| 377 | /* ---------------------------------------------------------------- |
| 378 | * ExecSeqScanInitializeWorker |
no test coverage detected