]> granicus.if.org Git - postgresql/commit
Improve reporting of newlocale() failures in CREATE COLLATION.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 20 Sep 2011 17:23:40 +0000 (13:23 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 20 Sep 2011 17:23:55 +0000 (13:23 -0400)
commit226bc87c2da98ebd9ac08d1677961cb5e7ea4e5a
tree5a8190fc067edab8eb1298e6bd0b40d86aef4c42
parente5b86c93b66b5caeb25a65bae26b04fc7a068957
Improve reporting of newlocale() failures in CREATE COLLATION.

The standardized errno code for "no such locale" failures is ENOENT, which
we were just reporting at face value, viz "No such file or directory".
Per gripe from Thom Brown, this might confuse users, so add an errdetail
message to clarify what it means.  Also, report newlocale() failures as
ERRCODE_INVALID_PARAMETER_VALUE rather than using
errcode_for_file_access(), since newlocale()'s errno values aren't
necessarily tied directly to file access failures.
src/backend/utils/adt/pg_locale.c