mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 16:26:30 -04:00
Fix incorrect format placeholders
This commit is contained in:
parent
4dc528bfa7
commit
590ecd9823
1 changed files with 1 additions and 1 deletions
|
|
@ -3026,7 +3026,7 @@ brin_minmax_multi_summary_out(PG_FUNCTION_ARGS)
|
|||
/* deserialize the range info easy-to-process pieces */
|
||||
ranges_deserialized = range_deserialize(ranges->maxvalues, ranges);
|
||||
|
||||
appendStringInfo(&str, "nranges: %u nvalues: %u maxvalues: %u",
|
||||
appendStringInfo(&str, "nranges: %d nvalues: %d maxvalues: %d",
|
||||
ranges_deserialized->nranges,
|
||||
ranges_deserialized->nvalues,
|
||||
ranges_deserialized->maxvalues);
|
||||
|
|
|
|||
Loading…
Reference in a new issue