Clean up some minor inefficiencies in parallel dump/restore.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 1 Jun 2016 20:14:21 +0000 (16:14 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 1 Jun 2016 20:14:21 +0000 (16:14 -0400)
commit763eec6b6d64767f5b2dd1a1fe314923bbc17968
tree36f0897ded00ecc08cc981434329bc1ba7f342f0
parent9ee56dfeee0389d61020db3c6a47bd2690bd040e
Clean up some minor inefficiencies in parallel dump/restore.

Parallel dump did a totally pointless query to find out the name of each
table to be dumped, which it already knows.  Parallel restore runs issued
lots of redundant SET commands because _doSetFixedOutputState() was invoked
once per TOC item rather than just once at connection start.  While the
extra queries are insignificant if you're dumping or restoring large
tables, it still seems worth getting rid of them.

Also, give the responsibility for selecting the right client_encoding for
a parallel dump worker to setup_connection() where it naturally belongs,
instead of having ad-hoc code for that in CloneArchive().  And fix some
minor bugs like use of strdup() where pg_strdup() would be safer.

Back-patch to 9.3, mostly to keep the branches in sync in an area that
we're still finding bugs in.

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