pgsql: Fix documentation of regular expression character-entry escapes.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix documentation of regular expression character-entry escapes.
Дата
Msg-id E1ZcHne-0000x1-AP@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix documentation of regular expression character-entry escapes.

The docs claimed that \uhhhh would be interpreted as a Unicode value
regardless of the database encoding, but it's never been implemented
that way: \uhhhh and \xhhhh actually mean exactly the same thing, namely
the character that pg_mb2wchar translates to 0xhhhh.  Moreover we were
falsely dismissive of the usefulness of Unicode code points above FFFF.
Fix that.

It's been like this for ages, so back-patch to all supported branches.

Branch
------
REL9_0_STABLE

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

Modified Files
--------------
doc/src/sgml/func.sgml |   21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Don't use "#" as an abbreviation for "number" in PL/Tcl error me
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix documentation of regular expression character-entry escapes.