diff options
Diffstat (limited to 'src/backend/optimizer/path/costsize.c')
-rw-r--r-- | src/backend/optimizer/path/costsize.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/costsize.c b/src/backend/optimizer/path/costsize.c index 459368e0fd2..4e17fac6c13 100644 --- a/src/backend/optimizer/path/costsize.c +++ b/src/backend/optimizer/path/costsize.c @@ -228,9 +228,9 @@ cost_seqscan(Path *path, PlannerInfo *root, /* * Primitive parallel cost model. Assume the leader will do half as much * work as a regular worker, because it will also need to read the tuples - * returned by the workers when they percolate up to the gather ndoe. - * This is almost certainly not exactly the right way to model this, so - * this will probably need to be changed at some point... + * returned by the workers when they percolate up to the gather node. This + * is almost certainly not exactly the right way to model this, so this + * will probably need to be changed at some point... */ if (nworkers > 0) run_cost = run_cost / (nworkers + 0.5); |