]> granicus.if.org Git - postgresql/commit
Fix lo_import and lo_export to return useful error messages more often.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 9 Oct 2012 01:52:53 +0000 (21:52 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 9 Oct 2012 01:52:53 +0000 (21:52 -0400)
commit875406af6ff961ba169db11c74828f02e96f5753
tree652372923977f919ae440040487501ca224892f4
parent1e9d79856dacf38570e9d9080081c5ba60841f54
Fix lo_import and lo_export to return useful error messages more often.

I found that these functions tend to return -1 while leaving an empty error
message string in the PGconn, if they suffer some kind of I/O error on the
file.  The reason is that lo_close, which thinks it's executed a perfectly
fine SQL command, clears the errorMessage.  The minimum-change workaround
is to reorder operations here so that we don't fill the errorMessage until
after lo_close.
src/interfaces/libpq/fe-lobj.c