Author: paul
Date: 2006-01-18 17:33:32 +0100 (Wed, 18 Jan 2006)
New Revision: 898
Log:
r2290@kite-hub: paul | 2006-01-18 10:32:11 -0600
Off-by-one error.
Modified:
trunk/
trunk/refman-5.0/data-types.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:6354
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:2265
+ b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:6354
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:2290
Modified: trunk/refman-5.0/data-types.xml
===================================================================
--- trunk/refman-5.0/data-types.xml 2006-01-18 15:47:31 UTC (rev 897)
+++ trunk/refman-5.0/data-types.xml 2006-01-18 16:33:32 UTC (rev 898)
@@ -5033,15 +5033,15 @@
<listitem>
<para>
- If the size of the column is 256 characters or fewer, then the
- column requires one extra byte of storage per row.
+ If the size of the column is fewer than 256 characters, the
+ column requires one byte extra storage per row.
</para>
</listitem>
<listitem>
<para>
- If the size of the column is greater than 256 characters, then
- the column requires 2 bytes extra storage per row.
+ If the size of the column is 256 characters or more,
+ the column requires two bytes extra storage per row.
</para>
</listitem>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r898 - in trunk: . refman-5.0 | paul | 18 Jan |