]> granicus.if.org Git - postgresql/commit
Try to defend against the possibility that libpq is still in COPY_IN state
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 7 Aug 2009 20:16:41 +0000 (20:16 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 7 Aug 2009 20:16:41 +0000 (20:16 +0000)
commit769222d0c7959667bc4cd408f25b1524c3962cba
tree93efcff08fa47df758c07ce377ec4b3c62226e9e
parentf5c2de263ec0fe865bc4d69b49fb4004306895b9
Try to defend against the possibility that libpq is still in COPY_IN state
when we reach the post-COPY "pump it dry" error recovery code that was added
2006-11-24.  Per a report from Neil Best, there is at least one code path
in which this occurs, leading to an infinite loop in code that's supposed
to be making it more robust not less so.  A reasonable response seems to be
to call PQputCopyEnd() again, so let's try that.

Back-patch to all versions that contain the cleanup loop.
src/bin/psql/copy.c