Fix EXPLAIN VERBOSE output for parallel aggregate.

Robert Haas <rhaas@postgresql.org>

Commit: 59eb55127906b943ff155240eebc161df8edb62f
Author: Robert Haas <rhaas@postgresql.org>
Date: 2016-04-27T11:37:40Z
Releases: 9.6.0
Fix EXPLAIN VERBOSE output for parallel aggregate.

The way that PartialAggregate and FinalizeAggregate plan nodes were
displaying output columns before was bogus.  Now, FinalizeAggregate
produces the same outputs as an Aggregate would have produced, while
PartialAggregate produces each of those outputs prefixed by the word
PARTIAL.

Discussion: 12585.1460737650@sss.pgh.pa.us

Patch by me, reviewed by David Rowley.

Files