diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-01-12 09:05:14 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-01-12 09:05:14 -0500 |
commit | 76568d37865c5c21ae154008b2c681e3e32ac880 (patch) | |
tree | 693f9267f184fa44fd86cca6900f59011daece99 /src/backend/executor/execParallel.c | |
parent | e72059f3757594c5530ce321acdbe67f0da5da13 (diff) | |
download | postgresql-76568d37865c5c21ae154008b2c681e3e32ac880.tar.gz postgresql-76568d37865c5c21ae154008b2c681e3e32ac880.zip |
Fix incorrect function name in comment.
Amit Langote
Diffstat (limited to 'src/backend/executor/execParallel.c')
-rw-r--r-- | src/backend/executor/execParallel.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/backend/executor/execParallel.c b/src/backend/executor/execParallel.c index 86d9fb59ba6..6cf62daab8a 100644 --- a/src/backend/executor/execParallel.c +++ b/src/backend/executor/execParallel.c @@ -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 |