diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2025-08-07 14:11:49 +0300 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2025-08-07 14:14:58 +0300 |
commit | 3b3aa1f651c713f1c17ec9c2f0216b8e4b62dba4 (patch) | |
tree | c8837b82d3448d47f99a1cbe57b1b4d5d8fffdd4 | |
parent | 21ae8fc5fd8698fc47ac1aa9c82e32713d6669be (diff) |
Revert "Clarify documentation for the initcap function"
This reverts commit 1fe9e3822c4e574aa526b99af723e61e03f36d4f. That commit
was a documentation improvement, not a bug fix. We don't normally backpatch
such changes.
Discussion: https://postgr.es/m/d8eacbeb8194c578a98317b86d7eb2ef0b6eb0e0.camel%40j-davis.com
-rw-r--r-- | doc/src/sgml/func.sgml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 91557f4fb0f..fc4b9537871 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -3110,11 +3110,8 @@ SELECT NOT(ROW(table.*) IS NOT NULL) FROM TABLE; -- detect at least one null in </para> <para> Converts the first letter of each word to upper case and the - rest to lower case. When using the <literal>libc</literal> locale - provider, words are sequences of alphanumeric characters separated - by non-alphanumeric characters; when using the ICU locale provider, - words are separated according to - <ulink url="https://www.unicode.org/reports/tr29/#Word_Boundaries">Unicode Standard Annex #29</ulink>. + rest to lower case. Words are sequences of alphanumeric + characters separated by non-alphanumeric characters. </para> <para> <literal>initcap('hi THOMAS')</literal> |