From 5a0152b3fd5ee7e533e29d33d700850fbdd6a91f Mon Sep 17 00:00:00 2001
From: Bruce Momjian
Date: Thu, 16 Nov 2000 06:03:40 +0000
Subject: 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
---
doc/src/sgml/datatype.sgml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'doc/src')
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml
index b64f64836ce..e805d2beacf 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
--
cgit v1.2.3