mirror of
https://github.com/postgres/postgres.git
synced 2025-06-01 14:21:49 +03:00
Fix PDF doc build.
Reported-by: Tom Lane Discussion: https://postgr.es/m/608525.1737781222@sss.pgh.pa.us
This commit is contained in:
parent
38273b5f83
commit
d2ca16bb50
@ -3120,19 +3120,15 @@ SELECT NOT(ROW(table.*) IS NOT NULL) FROM TABLE; -- detect at least one null in
|
|||||||
<para>
|
<para>
|
||||||
Performs case folding of the input string according to the collation.
|
Performs case folding of the input string according to the collation.
|
||||||
Case folding is similar to case conversion, but the purpose of case
|
Case folding is similar to case conversion, but the purpose of case
|
||||||
folding is to facilitate case-insensitive comparison of strings,
|
folding is to facilitate case-insensitive matching of strings,
|
||||||
whereas the purpose of case conversion is to convert to a particular
|
whereas the purpose of case conversion is to convert to a particular
|
||||||
cased form. This function can only be used when the server encoding
|
cased form. This function can only be used when the server encoding
|
||||||
is <literal>UTF8</literal>.
|
is <literal>UTF8</literal>.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
Ordinarily, case folding simply converts to lowercase, but there are a
|
Ordinarily, case folding simply converts to lowercase, but there may
|
||||||
few notable exceptions depending on the collation. For instance, the
|
be exceptions depending on the collation. For instance, some
|
||||||
character <literal>Σ</literal> (U+03A3) has two lowercase forms:
|
characters have more than two lowercase variants, or fold to uppercase.
|
||||||
<literal>σ</literal> (U+03C3) and <literal>ς</literal> (U+03C2); case
|
|
||||||
folding in the <literal>PG_C_UTF8</literal> collation maps all three
|
|
||||||
forms to <literal>σ</literal>. Additionally, the result is not
|
|
||||||
necessarily lowercase; some characters may be folded to uppercase.
|
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
Case folding may change the length of the string. For instance, in
|
Case folding may change the length of the string. For instance, in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user