pgsql: Include information on buffer usage during planning phase, in EX

Поиск
Список
Период
Сортировка
От Fujii Masao
Тема pgsql: Include information on buffer usage during planning phase, in EX
Дата
Msg-id E1jKQpX-0004fE-UF@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Include information on buffer usage during planning phase, in EXPLAIN output, take two.

When BUFFERS option is enabled, EXPLAIN command includes the information
on buffer usage during each plan node, in its output. In addition to that,
this commit makes EXPLAIN command include also the information on
buffer usage during planning phase, in its output. This feature makes it
easier to discern the cases where lots of buffer access happen during
planning.

This commit revives the original commit ed7a509571 that was reverted by
commit 19db23bcbd. The original commit had to be reverted because
it caused the regression test failure on the buildfarm members prion and
dory. But since commit c0885c4c30 got rid of the caues of the test failure,
the original commit can be safely introduced again.

Author: Julien Rouhaud, slightly revised by Fujii Masao
Reviewed-by: Justin Pryzby
Discussion: https://postgr.es/m/16109-26a1a88651e90608@postgresql.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/ce77abe63cfc85fb0bc236deb2cc34ae35cb5324

Modified Files
--------------
src/backend/commands/explain.c        | 32 ++++++++++++++++++--
src/backend/commands/prepare.c        | 13 ++++++++-
src/include/commands/explain.h        |  3 +-
src/test/regress/expected/explain.out | 55 ++++++++++++++++++++++++++++++++---
4 files changed, 95 insertions(+), 8 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Include information on buffer usage during planning phase, in EX
Следующее
От: Fujii Masao
Дата:
Сообщение: Re: pgsql: Include information on buffer usage during planning phase,in EX