OSDN Git Service

Use a non-locale-dependent definition of isspace() in array_in/array_out.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 21 Aug 2010 16:55:58 +0000 (16:55 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 21 Aug 2010 16:55:58 +0000 (16:55 +0000)
commit0804734d9144f5a6010e8f395542c11533b5a1c1
treebc578636739b82f6dbbaa6b96db9ef6bfab62cfc
parent510034ac83a219c499486dc40793ecc6e6a9e539
Use a non-locale-dependent definition of isspace() in array_in/array_out.

array_in discards unquoted leading and trailing whitespace in array values,
while array_out is careful to quote array elements that contain whitespace.
This is problematic when the definition of "whitespace" varies between
locales: array_in could drop characters that were meant to be part of the
value.  To avoid that, lock down "whitespace" to mean only the traditional
six ASCII space characters.

This change also works around a bug in OS X and some older BSD systems, in
which isspace() could return true for character fragments in UTF8 locales.
(There may be other places in PG where that bug could cause problems, but
this is the only one complained of so far; see recent report from Steven
Schlansker.)

Back-patch to 9.0, but not further.  Given the lack of previous reports
of trouble, changing this behavior in stable branches seems to offer
more risk of breaking applications than reward of avoiding problems.
src/backend/utils/adt/arrayfuncs.c