Fix whitespace in HashAgg EXPLAIN ANALYZE

David Rowley <drowley@postgresql.org>

Commit: 285da44a69ddcbe8aa955b5f863e02121f41c189
Author: David Rowley <drowley@postgresql.org>
Date: 2020-07-08T22:07:00Z
Releases: 13.0
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

Files

PathChange+/−
src/backend/commands/explain.c modified +4 −4

Discussion