Fix incorrect format placeholders in pgstat.c
authorMichael Paquier <michael@paquier.xyz>
Sat, 3 Aug 2024 18:07:20 +0000 (03:07 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sat, 3 Aug 2024 18:07:20 +0000 (03:07 +0900)
commit028b4b21df26fee67b3ce75c6f14fcfd3c7cf2ee
tree5bdc1e2b597b796648f371cceaa58d3ab27b4933
parent66188912566b5614dff095ae86f4b1e06d58e875
Fix incorrect format placeholders in pgstat.c

These should have been switched from %d to %u in 3188a4582a8c in the
debugging elogs added in ca1ba50fcb6f.  PgStat_Kind should never be
higher than INT32_MAX, but let's be clean.

Issue noticed while hacking more on this area.
src/backend/utils/activity/pgstat.c