---------------------------------------------------------------- * ExecReScanTidScan(node) * ---------------------------------------------------------------- */
| 444 | * ---------------------------------------------------------------- |
| 445 | */ |
| 446 | void |
| 447 | ExecReScanTidScan(TidScanState *node) |
| 448 | { |
| 449 | if (node->tss_TidList) |
| 450 | pfree(node->tss_TidList); |
| 451 | node->tss_TidList = NULL; |
| 452 | node->tss_NumTids = 0; |
| 453 | node->tss_TidPtr = -1; |
| 454 | |
| 455 | /* not really necessary, but seems good form */ |
| 456 | if (node->ss.ss_currentScanDesc) |
| 457 | table_rescan(node->ss.ss_currentScanDesc, NULL); |
| 458 | |
| 459 | ExecScanReScan(&node->ss); |
| 460 | } |
| 461 | |
| 462 | /* ---------------------------------------------------------------- |
| 463 | * ExecEndTidScan |
no test coverage detected