From: Tom Lane Date: Sun, 29 Mar 2020 22:54:19 +0000 (-0400) Subject: Doc: correct misstatement about ltree label maximum length. X-Git-Tag: REL_10_13~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4e07cca5a8a86bedcd874a6f674550407d35555;p=thirdparty%2Fpostgresql.git Doc: correct misstatement about ltree label maximum length. The documentation says that the max length is 255 bytes, but code inspection says it's actually 255 characters; and relevant lengths are stored as uint16 so that that works. --- diff --git a/doc/src/sgml/ltree.sgml b/doc/src/sgml/ltree.sgml index 97dc8aa2d06..b399391da16 100644 --- a/doc/src/sgml/ltree.sgml +++ b/doc/src/sgml/ltree.sgml @@ -19,8 +19,8 @@ A label is a sequence of alphanumeric characters and underscores (for example, in C locale the characters - A-Za-z0-9_ are allowed). Labels must be less than 256 bytes - long. + A-Za-z0-9_ are allowed). + Labels must be less than 256 characters long.