Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4bea576

Browse files
committed
Use INT64_FORMAT when formatting int64 values in explain
Per report from lapwing.
1 parent 23ba3b5 commit 4bea576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/explain.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2778,7 +2778,7 @@ show_incremental_sort_group_info(IncrementalSortGroupInfo *groupInfo,
27782778
{
27792779
if (indent)
27802780
appendStringInfoSpaces(es->str, es->indent * 2);
2781-
appendStringInfo(es->str, "%s Groups: %ld Sort Method", groupLabel,
2781+
appendStringInfo(es->str, "%s Groups: " INT64_FORMAT " Sort Method", groupLabel,
27822782
groupInfo->groupCount);
27832783
/* plural/singular based on methodNames size */
27842784
if (list_length(methodNames) > 1)

0 commit comments

Comments
 (0)