Use INT64_FORMAT when formatting int64 values in explain

Per report from lapwing.
This commit is contained in:
Tomas Vondra 2020-04-07 01:16:57 +02:00
parent 23ba3b5ee2
commit 4bea576b03
1 changed files with 1 additions and 1 deletions

View File

@ -2778,7 +2778,7 @@ show_incremental_sort_group_info(IncrementalSortGroupInfo *groupInfo,
{
if (indent)
appendStringInfoSpaces(es->str, es->indent * 2);
appendStringInfo(es->str, "%s Groups: %ld Sort Method", groupLabel,
appendStringInfo(es->str, "%s Groups: " INT64_FORMAT " Sort Method", groupLabel,
groupInfo->groupCount);
/* plural/singular based on methodNames size */
if (list_length(methodNames) > 1)