Add memory/disk usage for Material nodes in EXPLAIN
authorDavid Rowley <[email protected]>
Fri, 5 Jul 2024 02:05:08 +0000 (14:05 +1200)
committerDavid Rowley <[email protected]>
Fri, 5 Jul 2024 02:05:08 +0000 (14:05 +1200)
commit1eff8279d494b96f0073df78abc74954a2f6ee54
treead0a2c26cc564a821be0a3ade446b3bfd861c604
parentaa86129e19d704afb93cb84ab9638f33d266ee9d
Add memory/disk usage for Material nodes in EXPLAIN

Up until now, there was no ability to easily determine if a Material
node caused the underlying tuplestore to spill to disk or even see how
much memory the tuplestore used if it didn't.

Here we add some new functions to tuplestore.c to query this information
and add some additional output in EXPLAIN ANALYZE to display this
information for the Material node.

There are a few other executor node types that use tuplestores, so we
could also consider adding these details to the EXPLAIN ANALYZE for
those nodes too.  Let's consider those independently from this.  Having
the tuplestore.c infrastructure in to allow that is step 1.

Author: David Rowley
Reviewed-by: Matthias van de Meent, Dmitry Dolgov
Discussion: https://postgr.es/m/CAApHDvp5Py9g4Rjq7_inL3-MCK1Co2CRt_YWFwTU2zfQix0p4A@mail.gmail.com
src/backend/commands/explain.c
src/backend/utils/sort/tuplestore.c
src/include/utils/tuplestore.h
src/test/regress/expected/partition_prune.out
src/test/regress/sql/partition_prune.sql