---------------------------------------------------------------- * ExecSortInitializeWorker * * Attach worker to DSM space for sort statistics. * ---------------------------------------------------------------- */
| 552 | * ---------------------------------------------------------------- |
| 553 | */ |
| 554 | void |
| 555 | ExecSortInitializeWorker(SortState *node, ParallelWorkerContext *pwcxt) |
| 556 | { |
| 557 | node->shared_info = |
| 558 | shm_toc_lookup(pwcxt->toc, node->ss.ps.plan->plan_node_id, true); |
| 559 | node->am_worker = true; |
| 560 | } |
| 561 | |
| 562 | /* ---------------------------------------------------------------- |
| 563 | * ExecSortRetrieveInstrumentation |
no test coverage detected