]> granicus.if.org Git - postgresql/commit
Fix bogus loop logic in 013_crash_restart test's pump_until subroutine.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 12 Aug 2018 22:05:49 +0000 (18:05 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 12 Aug 2018 22:05:49 +0000 (18:05 -0400)
commitbadaa0c50de0e1c8b1deb27d0a1ee00498e40002
tree79968147ae86e511b958c411f8aec87dca71e3df
parent0ff8f521d40f271c57f29f0ca773981e4465b35b
Fix bogus loop logic in 013_crash_restart test's pump_until subroutine.

The pump_nb() step might've already received the desired data, so we must
check for that at the top of the loop not the bottom.  Otherwise, the
call to pump() will sit with nothing to do until the timeout elapses.
pump_until then falls out with apparent success ... but the timeout has
been used up, causing the next call of pump_until to report a timeout
failure.  I believe this explains the intermittent timeout failures
we've seen in the buildfarm ever since this test went in.  I was able
to reproduce the problem on gaur semi-repeatably, and this appears to
fix it.

In passing, remove a duplicate assignment, fix one stdin-assignment to
look like the rest, and document the test's dependency on test_decoding.
src/test/recovery/README
src/test/recovery/t/013_crash_restart.pl