pgsql: Tweak EXPLAIN for parallel query to show workers launched.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Tweak EXPLAIN for parallel query to show workers launched.
Date: 2016-04-15 15:54:36
Message-ID: E1ar64q-0001nZ-RH@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2016-04-15 16:08:27 pgsql: postgres_fdw: Clean up handling of system columns.
Previous Message Tom Lane 2016-04-15 14:44:34 pgsql: Fix portability problem induced by commit a6f6b7819.