pgsql: Fix show_incremental_sort_info with force_parallel_mode

From: Tomas Vondra <tomas(dot)vondra(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix show_incremental_sort_info with force_parallel_mode
Date: 2020-04-06 21:31:51
Message-ID: E1jLZLT-00019Q-GB@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix show_incremental_sort_info with force_parallel_mode

When executed with force_parallel_mode=regress, the function was exiting
too early and thus failed to print the worker stats. Fixed by making it
more like show_sort_info.

Discussion: https://postgr.es/m/CAPpHfds1waRZ=NOmueYq0sx1ZSCnt+5QJvizT8ndT2=etZEeAQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/7d6d82a52493ad47c57662d0ac6758da551e87a5

Modified Files
--------------
src/backend/commands/explain.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Geoghegan 2020-04-06 21:47:00 pgsql: Fix nbtree kill_prior_tuple posting list assert.
Previous Message Tomas Vondra 2020-04-06 19:36:15 pgsql: Implement Incremental Sort