pgsql: Fix unportable code in pgbench. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix unportable code in pgbench.
Date
Msg-id E1hGs8a-0000DZ-Fm@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix unportable code in pgbench.

The buildfarm points out that UINT64_FORMAT might not work with sscanf;
it's calibrated for our printf implementation, which might not agree
with the platform-supplied sscanf.  Fall back to just accepting an
unsigned long, which is already more than the documentation promises.

Oversight in e6c3ba7fb; back-patch to v11, as that was.

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/7e5569fdee0c2173de564a1b0649cb4d4cc5b890

Modified Files
--------------
src/bin/pgbench/pgbench.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix assorted minor bogosity in GSSAPI transport error messages.
Next
From: Bruce Momjian
Date:
Subject: pgsql: docs: clarify pg_upgrade's recovery behavior