]> granicus.if.org Git - postgresql/commit
Be more robust when strerror() doesn't give a useful result.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 6 Nov 2013 20:50:17 +0000 (15:50 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 6 Nov 2013 20:50:17 +0000 (15:50 -0500)
commit8e68816cc2567642c6fcca4eaac66c25e0ae5ced
treeacd37f11ed894757ed3ff147622e3c8977521423
parentbb45c640411af61279bea044f8d108f9da96b735
Be more robust when strerror() doesn't give a useful result.

glibc, at least, is capable of returning "???" instead of anything useful
if it doesn't like the setting of LC_CTYPE.  If this happens, or in the
previously-known case of strerror() returning an empty string, try to
print the C macro name for the error code ("EACCES" etc).  Only if we
don't have the error code in our compiled-in list of popular error codes
(which covers most though not quite all of what's called out in the POSIX
spec) will we fall back to printing a numeric error code.  This should
simplify debugging.

Note that this functionality is currently only provided for %m in backend
ereport/elog messages.  That may be sufficient, since we don't fool with the
locale environment in frontend clients, but it's foreseeable that we might
want similar code in libpq for instance.

There was some talk of back-patching this, but let's see how the buildfarm
likes it first.  It seems likely that at least some of the POSIX-defined
error code symbols don't exist on all platforms.  I don't want to clutter
the entire list with #ifdefs, but we may need more than are here now.

MauMau, edited by me
src/backend/utils/error/elog.c