]> granicus.if.org Git - postgresql/commit
Prevent bitmap heap scans from showing unnecessary block info in EXPLAIN ANALYZE.
authorFujii Masao <fujii@postgresql.org>
Mon, 14 Jul 2014 11:40:14 +0000 (20:40 +0900)
committerFujii Masao <fujii@postgresql.org>
Mon, 14 Jul 2014 11:42:53 +0000 (20:42 +0900)
commit543f57fc37e5d18ad4937fe11efd8e58d8fc7b23
tree085839cb30e0b404701cb5485e52b088521b97f8
parent22ccce5206717036a06aefdf3f9f78ed9ffaab2f
Prevent bitmap heap scans from showing unnecessary block info in EXPLAIN ANALYZE.

EXPLAIN ANALYZE shows the information of the numbers of exact/lossy blocks which
bitmap heap scan processes. But, previously, when those numbers were both zero,
it displayed only the prefix "Heap Blocks:" in TEXT output format. This is strange
and would confuse the users. So this commit suppresses such unnecessary information.

Backpatch to 9.4 where EXPLAIN ANALYZE was changed so that such information was
displayed.

Etsuro Fujita
src/backend/commands/explain.c