diff options
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r-- | src/backend/commands/explain.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c index 1e80fd8b68c..6defd26df50 100644 --- a/src/backend/commands/explain.c +++ b/src/backend/commands/explain.c @@ -3635,10 +3635,10 @@ show_tidbitmap_info(BitmapHeapScanState *planstate, ExplainState *es) { if (es->format != EXPLAIN_FORMAT_TEXT) { - ExplainPropertyInteger("Exact Heap Blocks", NULL, - planstate->exact_pages, es); - ExplainPropertyInteger("Lossy Heap Blocks", NULL, - planstate->lossy_pages, es); + ExplainPropertyUInteger("Exact Heap Blocks", NULL, + planstate->exact_pages, es); + ExplainPropertyUInteger("Lossy Heap Blocks", NULL, + planstate->lossy_pages, es); } else { @@ -3647,9 +3647,9 @@ show_tidbitmap_info(BitmapHeapScanState *planstate, ExplainState *es) ExplainIndentText(es); appendStringInfoString(es->str, "Heap Blocks:"); if (planstate->exact_pages > 0) - appendStringInfo(es->str, " exact=%ld", planstate->exact_pages); + appendStringInfo(es->str, " exact=" UINT64_FORMAT, planstate->exact_pages); if (planstate->lossy_pages > 0) - appendStringInfo(es->str, " lossy=%ld", planstate->lossy_pages); + appendStringInfo(es->str, " lossy=" UINT64_FORMAT, planstate->lossy_pages); appendStringInfoChar(es->str, '\n'); } } |