From b62381d9a23b4b96259cf560e411137656201704 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 21 May 2023 11:21:19 -0400 Subject: [PATCH] Doc: fix some rendering problems in the PDF docs build. Tweak column widths in a couple of tables to avoid "contents ... exceed the available area" warnings. Remove usage of some non-Latin-1 characters. Discussion: https://postgr.es/m/614600.1684537037@sss.pgh.pa.us --- doc/src/sgml/charset.sgml | 21 +++++++++++++++++---- doc/src/sgml/release-16.sgml | 2 +- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/doc/src/sgml/charset.sgml b/doc/src/sgml/charset.sgml index 9db14649aa7..9a93daf37d0 100644 --- a/doc/src/sgml/charset.sgml +++ b/doc/src/sgml/charset.sgml @@ -1140,6 +1140,14 @@ SELECT 'w;x*y-z' = 'wxyz' COLLATE num_ignore_punct; -- true ICU Collation Levels + + + + + + + + Level @@ -1250,6 +1258,10 @@ SELECT 'x-y' = 'x_y' COLLATE level4; -- false
ICU Collation Settings + + + + Key @@ -1305,10 +1317,11 @@ SELECT 'x-y' = 'x_y' COLLATE level4; -- false Full normalization is important in some cases, such as when - multiple accents are applied to a single character. For instance, - 'ệ' can be composed of code points - U&'\0065\0323\0302' or - U&'\0065\0302\0323'. With full normalization + multiple accents are applied to a single character. For example, + the code point sequences U&'\0065\0323\0302' + and U&'\0065\0302\0323' represent + an e with circumflex and dot-below accents + applied in different orders. With full normalization on, these code point sequences are treated as equal; otherwise they are unequal. diff --git a/doc/src/sgml/release-16.sgml b/doc/src/sgml/release-16.sgml index d5efe4645fb..9f6a272b30f 100644 --- a/doc/src/sgml/release-16.sgml +++ b/doc/src/sgml/release-16.sgml @@ -1772,7 +1772,7 @@ Author: Tom Lane -Change date_trunc(unit, timestamptz, time_zone) to be an immutable function (Przemysław Sztoch) +Change date_trunc(unit, timestamptz, time_zone) to be an immutable function (Przemyslaw Sztoch)