From: Bruce Momjian Date: Thu, 16 Nov 2000 06:03:40 +0000 (+0000) Subject: I think in datatype.sgml line 506 or so: X-Git-Tag: REL7_1_BETA~166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a0152b3fd5ee7e533e29d33d700850fbdd6a91f;p=postgresql I think in datatype.sgml line 506 or so: varchar(n) (4+x) bytes should be varchar(n) (4+n) bytes or varchar(x) (4+x) bytes Regards Laser Henry --- diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index b64f64836c..e805d2beac 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1,5 +1,5 @@ @@ -497,13 +497,13 @@ CREATE TABLE tablename ( text - (4+x) bytes + (4+length) bytes Best choice Variable-length varchar(n) - (4+x) bytes + (4+n) bytes SQL92-compatible Variable-length with limit