From: Robert Haas Date: Mon, 30 Nov 2015 17:54:11 +0000 (-0500) Subject: Fix obsolete comment. X-Git-Tag: REL9_6_BETA1~1053 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3690dc6b03e7f3da9ddccf1d48b9314a37654a41;p=postgresql Fix obsolete comment. It's amazing how fast things become obsolete these days. Amit Langote --- diff --git a/src/backend/executor/nodeGather.c b/src/backend/executor/nodeGather.c index f8c1ba637d..f32da1e235 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