]> granicus.if.org Git - postgresql/commitdiff
Fix incorrect function name in comment.
authorRobert Haas <rhaas@postgresql.org>
Thu, 12 Jan 2017 14:05:14 +0000 (09:05 -0500)
committerRobert Haas <rhaas@postgresql.org>
Thu, 12 Jan 2017 14:05:14 +0000 (09:05 -0500)
Amit Langote

src/backend/executor/execParallel.c

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