pgsql: Fix length checking for Unicode identifiers containing escapes (

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix length checking for Unicode identifiers containing escapes (
Дата
Msg-id E1WE1uZ-0001IL-Ip@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix length checking for Unicode identifiers containing escapes (U&"...").

We used the length of the input string, not the de-escaped string, as
the trigger for NAMEDATALEN truncation.  AFAICS this would only result
in sometimes printing a phony truncation warning; but it's just luck
that there was no worse problem, since we were violating the API spec
for truncate_identifier().  Per bug #9204 from Joshua Yanovski.

This has been wrong since the Unicode-identifier support was added,
so back-patch to all supported branches.

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/ca1c171817c5518932ce549d138f028f5d4d9398

Modified Files
--------------
src/backend/parser/scan.l |   16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: pg_upgrade: mention the need for tablespace snapshots in docs
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix length checking for Unicode identifiers containing escapes (