OSDN Git Service

Fix parallel pg_restore to handle comments on POST_DATA items correctly.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 18 Feb 2011 18:11:50 +0000 (13:11 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 18 Feb 2011 18:11:50 +0000 (13:11 -0500)
commitb22e2d6b0254e480f7ffa83ba17cd7a9e4cace98
treef282c9a43aa854ede412f221cb72670e2d0cb116
parent848cd3289e4d08f9a3c78f654ceb6e3f754e1dd3
Fix parallel pg_restore to handle comments on POST_DATA items correctly.

The previous coding would try to process all SECTION_NONE items in the
initial sequential-restore pass, which failed if they were dependencies of
not-yet-restored items.  Fix by postponing such items into the parallel
processing pass once we have skipped any non-PRE_DATA item.

Back-patch into 9.0; the original parallel-restore coding in 8.4 did not
have this bug, so no need to change it.

Report and diagnosis by Arnd Hannemann.
src/bin/pg_dump/pg_backup_archiver.c