pgsql: Tweak EXPLAIN for parallel query to show workers launched. - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Tweak EXPLAIN for parallel query to show workers launched.
Date
Msg-id E1ar64q-0001nZ-RH@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Tweak EXPLAIN for parallel query to show workers launched.

The previous display was sort of confusing, because it didn't
distinguish between the number of workers that we planned to launch
and the number that actually got launched.  This has already confused
several people, so display both numbers and label them clearly.

Julien Rouhaud, reviewed by me.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/5702277ca97396384eaf5c58d582b79b9984ce73

Modified Files
--------------
src/backend/commands/explain.c    | 10 +++++++++-
src/backend/executor/nodeGather.c |  1 +
src/include/nodes/execnodes.h     |  1 +
3 files changed, 11 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix portability problem induced by commit a6f6b7819.
Next
From: Robert Haas
Date:
Subject: pgsql: postgres_fdw: Clean up handling of system columns.