pgsql: Fix whitespace in HashAgg EXPLAIN ANALYZE - Mailing list pgsql-committers

From David Rowley
Subject pgsql: Fix whitespace in HashAgg EXPLAIN ANALYZE
Date
Msg-id E1jtIDL-0007Kx-KV@gemulon.postgresql.org
Whole thread Raw
List 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
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2b7dbc0db6ecf38fc305284d006a1ef8f5354fbb

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


pgsql-committers by date:

Previous
From: Andres Freund
Date:
Subject: pgsql: code: replace most remaining uses of 'master'.
Next
From: David Rowley
Date:
Subject: pgsql: Fix whitespace in HashAgg EXPLAIN ANALYZE