Fix missing abort checks in pg_backup_directory.c.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 29 May 2016 17:18:48 +0000 (13:18 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 29 May 2016 17:18:48 +0000 (13:18 -0400)
commit73f5acce3f5f56189ead7666cf932e52b6c42adb
tree0503e2699b9b7178299e7cbfb80f8246c3dda5f3
parent937b85805b6e87180bf9e088acfb4ba4e3e3d9bc
Fix missing abort checks in pg_backup_directory.c.

Parallel restore from directory format failed to respond to control-C
in a timely manner, because there were no checkAborting() calls in the
code path that reads data from a file and sends it to the backend.
If any worker was in the midst of restoring data for a large table,
you'd just have to wait.

This fix doesn't do anything for the problem of aborting a long-running
server-side command, but at least it fixes things for data transfers.

Back-patch to 9.3 where parallel restore was introduced.
src/bin/pg_dump/pg_backup_directory.c