Re: [GENERAL] trouble with pg_upgrade 9.0 -> 9.1

Kevin Grittner <kgrittn@mail.com>

From: "Kevin Grittner" <kgrittn@mail.com>
To: "Groshev Andrey" <greenx@yandex.ru>,"Bruce Momjian" <bruce@momjian.us>
Cc: "PostgreSQL-development" <pgsql-hackers@postgresql.org>
Date: 2012-12-19T17:56:05Z
Lists: pgsql-hackers
Groshev Andrey wrote:

> >>>>>   Mismatch of relation names: database "database", old rel public.lob.ВерсияВнешнегоДокумента$Документ_pkey, new rel public.plob.ВерсияВнешнегоДокумента$Документ

There is a limit on identifiers of 63 *bytes* (not characters)
after which the name is truncated. In UTF8 encoding, the underscore
would be in the 64th position.

-Kevin