From: jon
Date: November 7 2008 6:09pm
Subject: svn commit - mysqldoc@docsrva: r12333 - in trunk: refman-5.1 refman-6.0
List-Archive: http://lists.mysql.com/commits/58215
Message-Id: <200811071809.mA7I9dum012000@docsrva.mysql.com>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: jstephens
Date: 2008-11-07 19:09:39 +0100 (Fri, 07 Nov 2008)
New Revision: 12333
Log:
Fixed a couple of typoes (Thanks, MLord!)
Modified:
trunk/refman-5.1/partitioning.xml
trunk/refman-6.0/partitioning.xml
Modified: trunk/refman-5.1/partitioning.xml
===================================================================
--- trunk/refman-5.1/partitioning.xml 2008-11-07 18:08:04 UTC (rev 12332)
+++ trunk/refman-5.1/partitioning.xml 2008-11-07 18:09:39 UTC (rev 12333)
Changed blocks: 2, Lines Added: 2, Lines Deleted: 2; 752 bytes
@@ -3896,7 +3896,7 @@
PARTITION BY RANGE( region_code ) (
PARTITION p0 VALUES LESS THAN (64),
PARTITION p1 VALUES LESS THAN (128),
- PARTITION p2 VALUES LESS THAN (192)
+ PARTITION p2 VALUES LESS THAN (192),
PARTITION p3 VALUES LESS THAN MAXVALUE
);
@@ -3907,7 +3907,7 @@
-SELECT fname, lname, postcode, dob
+SELECT fname, lname, region_code, dob
FROM t1
WHERE region_code > 125 AND region_code < 130;
Modified: trunk/refman-6.0/partitioning.xml
===================================================================
--- trunk/refman-6.0/partitioning.xml 2008-11-07 18:08:04 UTC (rev 12332)
+++ trunk/refman-6.0/partitioning.xml 2008-11-07 18:09:39 UTC (rev 12333)
Changed blocks: 2, Lines Added: 2, Lines Deleted: 2; 752 bytes
@@ -3768,7 +3768,7 @@
PARTITION BY RANGE( region_code ) (
PARTITION p0 VALUES LESS THAN (64),
PARTITION p1 VALUES LESS THAN (128),
- PARTITION p2 VALUES LESS THAN (192)
+ PARTITION p2 VALUES LESS THAN (192),
PARTITION p3 VALUES LESS THAN MAXVALUE
);
@@ -3779,7 +3779,7 @@
-SELECT fname, lname, postcode, dob
+SELECT fname, lname, region_code, dob
FROM t1
WHERE region_code > 125 AND region_code < 130;