Skip to content

Commit e4e07cc

Browse files
committed
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.
1 parent 2618ac6 commit e4e07cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/ltree.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<para>
2020
A <firstterm>label</firstterm> is a sequence of alphanumeric characters
2121
and underscores (for example, in C locale the characters
22-
<literal>A-Za-z0-9_</> are allowed). Labels must be less than 256 bytes
23-
long.
22+
<literal>A-Za-z0-9_</> are allowed).
23+
Labels must be less than 256 characters long.
2424
</para>
2525

2626
<para>

0 commit comments

Comments
 (0)