On Sat, Dec 09, 2006 at 10:50:05PM -0700, Michael Fuhr wrote:
> psql's display of Unicode combining characters appears to have
> changed in 8.2.
I forgot to mention that this change is in aligned output; unaligned
output prints sequences with combining characters as I'd expect:
test=> SELECT E'n\314\203';
?column?
----------
n\u0303
(1 row)
test=> \a
Output format is unaligned.
test=> SELECT E'n\314\203';
?column?
ñ
(1 row)
--
Michael Fuhr