Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4bea576

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

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/backend/commands/explain.c

Copy file name to clipboardExpand all lines: src/backend/commands/explain.c
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.