aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeGather.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-11-30 12:54:11 -0500
committerRobert Haas <rhaas@postgresql.org>2015-11-30 12:54:46 -0500
commit3690dc6b03e7f3da9ddccf1d48b9314a37654a41 (patch)
treeb2b3b6409794a8e002d137f9bf24882cbdbdfdfc /src/backend/executor/nodeGather.c
parentec7eef6b1103f92aea94aa79aabd8e0e87973010 (diff)
downloadpostgresql-3690dc6b03e7f3da9ddccf1d48b9314a37654a41.tar.gz
postgresql-3690dc6b03e7f3da9ddccf1d48b9314a37654a41.zip
Fix obsolete comment.
It's amazing how fast things become obsolete these days. Amit Langote
Diffstat (limited to 'src/backend/executor/nodeGather.c')
-rw-r--r--src/backend/executor/nodeGather.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/executor/nodeGather.c b/src/backend/executor/nodeGather.c
index f8c1ba637d3..f32da1e2352 100644
--- a/src/backend/executor/nodeGather.c
+++ b/src/backend/executor/nodeGather.c
@@ -11,7 +11,8 @@
* or have not started up yet. It then merges all of the results it produces
* and the results from the workers into a single output stream. Therefore,
* it will normally be used with a plan where running multiple copies of the
- * same plan does not produce duplicate output, such as PartialSeqScan.
+ * same plan does not produce duplicate output, such as parallel-aware
+ * SeqScan.
*
* Alternatively, a Gather node can be configured to use just one worker
* and the single-copy flag can be set. In this case, the Gather node will