@@ -742,10 +742,11 @@ ExecParallelInitializeWorker(PlanState *planstate, shm_toc *toc)
742
742
/*
743
743
* Main entrypoint for parallel query worker processes.
744
744
*
745
- * We reach this function from ParallelMain, so the setup necessary to create
746
- * a sensible parallel environment has already been done; ParallelMain worries
747
- * about stuff like the transaction state, combo CID mappings, and GUC values,
748
- * so we don't need to deal with any of that here.
745
+ * We reach this function from ParallelWorkerMain, so the setup necessary to
746
+ * create a sensible parallel environment has already been done;
747
+ * ParallelWorkerMain worries about stuff like the transaction state, combo
748
+ * CID mappings, and GUC values, so we don't need to deal with any of that
749
+ * here.
749
750
*
750
751
* Our job is to deal with concerns specific to the executor. The parallel
751
752
* group leader will have stored a serialized PlannedStmt, and it's our job