]> granicus.if.org Git - postgresql/commit
Avoid assuming that instr_time == struct timeval in pgbench logging.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 1 Jan 2017 20:17:08 +0000 (15:17 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 1 Jan 2017 20:17:08 +0000 (15:17 -0500)
commit74baa1e3b89c1651ade1afeffc715cac24041e2f
tree72c3fe279a9f78c4c17b2ac19f9744bbfe62b543
parent257d8157205a7be5f9799e8941b922521d678a25
Avoid assuming that instr_time == struct timeval in pgbench logging.

This code was presuming undue familiarity with the contents of the
instr_time struct.  That was already broken on Windows, and it's about
to get broken on most other platforms as well.  The simplest solution
that preserves the current output definition is to just do our own
gettimeofday() call here.  Realistically, the extra cost is probably
negligible in comparison to everything else that's going on in a
pgbench transaction, so it's not worth sweating over.

On Windows, the precision delivered by gettimeofday() is lower than
one could wish, but this is still a big improvement over printing
zeroes, as the code did before.

Discussion: https://postgr.es/m/8837.1483216839@sss.pgh.pa.us
src/bin/pgbench/pgbench.c