pgsql: Don't downcase non-ascii identifier chars in multi-byte encoding

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Don't downcase non-ascii identifier chars in multi-byte encoding
Date: 2013-06-08 14:25:27
Message-ID: E1UlK59-00068L-I0@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't downcase non-ascii identifier chars in multi-byte encodings.

Long-standing code has called tolower() on identifier character bytes
with the high bit set. This is clearly an error and produces junk output
when the encoding is multi-byte. This patch therefore restricts this
activity to cases where there is a character with the high bit set AND
the encoding is single-byte.

There have been numerous gripes about this, most recently from Martin
Schäfer.

Backpatch to all live releases.

Branch
------
REL9_1_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/d7cb64aeb5a7e40f4ea75e60bba1d606ca06df7f

Modified Files
--------------
src/backend/parser/scansup.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2013-06-08 14:25:39 pgsql: Don't downcase non-ascii identifier chars in multi-byte encoding
Previous Message Andrew Dunstan 2013-06-08 14:25:15 pgsql: Don't downcase non-ascii identifier chars in multi-byte encoding