mirror of
https://github.com/postgres/postgres.git
synced 2026-02-24 02:11:28 -05:00
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.
This commit is contained in:
parent
2618ac6c65
commit
e4e07cca5a
1 changed files with 2 additions and 2 deletions
|
|
@ -19,8 +19,8 @@
|
|||
<para>
|
||||
A <firstterm>label</firstterm> is a sequence of alphanumeric characters
|
||||
and underscores (for example, in C locale the characters
|
||||
<literal>A-Za-z0-9_</> are allowed). Labels must be less than 256 bytes
|
||||
long.
|
||||
<literal>A-Za-z0-9_</> are allowed).
|
||||
Labels must be less than 256 characters long.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
|
|
|||
Loading…
Reference in a new issue