]> granicus.if.org Git - postgresql/commit
Don't downcase non-ascii identifier chars in multi-byte encodings.
authorAndrew Dunstan <andrew@dunslane.net>
Sat, 8 Jun 2013 14:20:37 +0000 (10:20 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Sat, 8 Jun 2013 14:20:37 +0000 (10:20 -0400)
commit489be9c87e7eab07c0cadd1be86bfaa174532c87
treeb10d736e5ddd06a4c6ee9956b40e1efa94d48dd3
parent88ce29a91a229e6ac9cbe56da5742553446a7670
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.
src/backend/parser/scansup.c