---------------------------------------------------------------- * ExecAggInitializeWorker * * Attach worker to DSM space for aggregate statistics. * ---------------------------------------------------------------- */
| 5110 | * ---------------------------------------------------------------- |
| 5111 | */ |
| 5112 | void |
| 5113 | ExecAggInitializeWorker(AggState *node, ParallelWorkerContext *pwcxt) |
| 5114 | { |
| 5115 | node->shared_info = |
| 5116 | shm_toc_lookup(pwcxt->toc, node->ss.ps.plan->plan_node_id, true); |
| 5117 | } |
| 5118 | |
| 5119 | /* ---------------------------------------------------------------- |
| 5120 | * ExecAggRetrieveInstrumentation |
no test coverage detected