Remove pg_dump/parallel.c's useless "aborting" flag.
authorTom Lane <[email protected]>
Sun, 29 May 2016 17:00:09 +0000 (13:00 -0400)
committerTom Lane <[email protected]>
Sun, 29 May 2016 17:00:09 +0000 (13:00 -0400)
commit99e3298181546bb31895b6f7123ece222427c8dc
tree4b7b660063cda79167ee937293fd5a451e3474d1
parent24c1f64a66d6f7a6448d0c9aedecf3e47a2a0c5e
Remove pg_dump/parallel.c's useless "aborting" flag.

This was effectively dead code, since the places that tested it could not
be reached after we entered the on-exit-cleanup routine that would set it.
It seems to have been a leftover from a design in which error abort would
try to send fresh commands to the workers --- a design which could never
have worked reliably, of course.  Since the flag is not cross-platform, it
complicates reasoning about the code's behavior, which we could do without.

Although this is effectively just cosmetic, back-patch anyway, because
there are some actual bugs in the vicinity of this behavior.

Discussion: <15583.1464462418@sss.pgh.pa.us>
src/bin/pg_dump/parallel.c