pgsql: Fix whitespace in HashAgg EXPLAIN ANALYZE

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix whitespace in HashAgg EXPLAIN ANALYZE
Date: 2020-07-08 22:07:30
Message-ID: E1jtIDy-0007Lg-7F@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix whitespace in HashAgg EXPLAIN ANALYZE

The Sort node does not put a space between the number of kilobytes and
the "kB" of memory or disk space used, but HashAgg does. Here we align
HashAgg to do the same as Sort. Sort has been displaying this
information for longer than HashAgg, so it makes sense to align HashAgg
to Sort rather than the other way around.

Reported-by: Justin Pryzby
Discussion: https://postgr.es/m/20200708163021.GW4107@telsasoft.com
Backpatch-through: 13, where the hashagg started showing these details

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/285da44a69ddcbe8aa955b5f863e02121f41c189

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

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2020-07-09 00:25:58 pgsql: Tighten up Windows CRLF conversion in our TAP test scripts.
Previous Message David Rowley 2020-07-08 22:06:51 pgsql: Fix whitespace in HashAgg EXPLAIN ANALYZE