1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix incorrect function name in comment.

Amit Langote
This commit is contained in:
Robert Haas
2017-01-12 09:05:14 -05:00
parent e72059f375
commit 76568d3786

View File

@ -742,10 +742,11 @@ ExecParallelInitializeWorker(PlanState *planstate, shm_toc *toc)
/* /*
* Main entrypoint for parallel query worker processes. * Main entrypoint for parallel query worker processes.
* *
* We reach this function from ParallelMain, so the setup necessary to create * We reach this function from ParallelWorkerMain, so the setup necessary to
* a sensible parallel environment has already been done; ParallelMain worries * create a sensible parallel environment has already been done;
* about stuff like the transaction state, combo CID mappings, and GUC values, * ParallelWorkerMain worries about stuff like the transaction state, combo
* so we don't need to deal with any of that here. * 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 * 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 * group leader will have stored a serialized PlannedStmt, and it's our job