Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b62381d

Browse files
committed
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
1 parent a2eb99a commit b62381d

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

doc/src/sgml/charset.sgml

+17-4
Original file line numberDiff line numberDiff line change
@@ -1140,6 +1140,14 @@ SELECT 'w;x*y-z' = 'wxyz' COLLATE num_ignore_punct; -- true
11401140
<table id="icu-collation-levels">
11411141
<title>ICU Collation Levels</title>
11421142
<tgroup cols="8">
1143+
<colspec colname="col1" colwidth="1*"/>
1144+
<colspec colname="col2" colwidth="1.25*"/>
1145+
<colspec colname="col3" colwidth="1*"/>
1146+
<colspec colname="col4" colwidth="1*"/>
1147+
<colspec colname="col5" colwidth="1*"/>
1148+
<colspec colname="col6" colwidth="1*"/>
1149+
<colspec colname="col7" colwidth="1*"/>
1150+
<colspec colname="col8" colwidth="1*"/>
11431151
<thead>
11441152
<row>
11451153
<entry>Level</entry>
@@ -1250,6 +1258,10 @@ SELECT 'x-y' = 'x_y' COLLATE level4; -- false
12501258
<table id="icu-collation-settings-table">
12511259
<title>ICU Collation Settings</title>
12521260
<tgroup cols="4">
1261+
<colspec colname="col1" colwidth="1*"/>
1262+
<colspec colname="col2" colwidth="2*"/>
1263+
<colspec colname="col3" colwidth="2*"/>
1264+
<colspec colname="col4" colwidth="5*"/>
12531265
<thead>
12541266
<row>
12551267
<entry>Key</entry>
@@ -1305,10 +1317,11 @@ SELECT 'x-y' = 'x_y' COLLATE level4; -- false
13051317
</para>
13061318
<para>
13071319
Full normalization is important in some cases, such as when
1308-
multiple accents are applied to a single character. For instance,
1309-
<literal>'ệ'</literal> can be composed of code points
1310-
<literal>U&amp;'\0065\0323\0302'</literal> or
1311-
<literal>U&amp;'\0065\0302\0323'</literal>. With full normalization
1320+
multiple accents are applied to a single character. For example,
1321+
the code point sequences <literal>U&amp;'\0065\0323\0302'</literal>
1322+
and <literal>U&amp;'\0065\0302\0323'</literal> represent
1323+
an <literal>e</literal> with circumflex and dot-below accents
1324+
applied in different orders. With full normalization
13121325
on, these code point sequences are treated as equal; otherwise they
13131326
are unequal.
13141327
</para>

doc/src/sgml/release-16.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1772,7 +1772,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
17721772

17731773
<listitem>
17741774
<para>
1775-
Change date_trunc(unit, timestamptz, time_zone) to be an immutable function (Przemysław Sztoch)
1775+
Change date_trunc(unit, timestamptz, time_zone) to be an immutable function (Przemyslaw Sztoch)
17761776
</para>
17771777

17781778
<para>

0 commit comments

Comments
 (0)