pgsql: Fix indentation of \d footers for non-ASCII cases. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix indentation of \d footers for non-ASCII cases.
Date
Msg-id E1S5RBH-0007p2-BP@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix indentation of \d footers for non-ASCII cases.

Multi-line "Inherits:" and "Child tables:" footers were misindented when
those strings' translations involved multibyte characters, because we were
using strlen() instead of an appropriate display width measurement.

In passing, avoid doing gettext() more than once per loop in these places.

While at it, fix pg_wcswidth(), which has been entirely broken since about
8.2, but fortunately has been unused for the same length of time.

Report and patch by Sergey Burladyan (bug #6480)

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/1ed7f0e6b90a9b693895105a90d8b5b0eefbcd56

Modified Files
--------------
src/bin/psql/describe.c |   32 +++++++++++++++++++-------------
src/bin/psql/mbprint.c  |   16 +++++++++-------
src/bin/psql/mbprint.h  |    2 +-
3 files changed, 29 insertions(+), 21 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Add GetForeignColumnOptions() to foreign.c, and add some documen
Next
From: Tom Lane
Date:
Subject: pgsql: Improve estimation of IN/NOT IN by assuming array elements are d