pgsql: Fix incorrect encoding-aware name truncation in

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix incorrect encoding-aware name truncation in
Date: 2009-08-16 18:14:46
Message-ID: 20090816181446.A4BCD75331E@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix incorrect encoding-aware name truncation in makeArrayTypeName().

truncate_identifier won't do anything if the passed-in strlen is already
less than NAMEDATALEN, which it always would be given the strlcpy usage.
This has been broken since the arrays-of-composite-types code went in.

Arguably truncate_identifier is suffering from excessive optimization
and should always process the string, but for the moment I'll take the
more localized patch.

Per bug #4987.

Tags:
----
REL8_3_STABLE

Modified Files:
--------------
pgsql/src/backend/catalog:
pg_type.c (r1.115.2.1 -> r1.115.2.2)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/catalog/pg_type.c?r1=1.115.2.1&r2=1.115.2.2)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2009-08-16 19:55:21 pgsql: Fix imprecise documentation of random(): it never returns 1.0.
Previous Message Tom Lane 2009-08-16 18:14:39 pgsql: Fix incorrect encoding-aware name truncation in