]> git.ipfire.org Git - thirdparty/postgresql.git/commit
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)
commit826c94a43e5946b474bef50fbf027a9df10f3945
tree549a9e1c5322a9b151a4357bab047cb9a2911ec7
parent2ee6bf59e51b4a9f86ef41832ae7fa92d427311b
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