List:Commits« Previous MessageNext Message »
From:jon Date:March 5 2006 5:06pm
Subject:svn commit - mysqldoc@docsrva: r1519 - trunk/refman-5.1
View as plain text  
Author: jstephens
Date: 2006-03-05 17:06:28 +0100 (Sun, 05 Mar 2006)
New Revision: 1519

Log:

Corrected typo in example.



Modified:
   trunk/refman-5.1/partitioning.xml

Modified: trunk/refman-5.1/partitioning.xml
===================================================================
--- trunk/refman-5.1/partitioning.xml	2006-03-05 09:33:42 UTC (rev 1518)
+++ trunk/refman-5.1/partitioning.xml	2006-03-05 16:06:28 UTC (rev 1519)
@@ -1549,7 +1549,7 @@
 
 <programlisting>
 CREATE TABLE ts (id INT, purchased DATE)
-    PARTITION BY RANGE(YEAR(purchased))
+    PARTITION BY RANGE( YEAR(purchased) )
     SUBPARTITION BY HASH( TO_DAYS(purchased) )
     SUBPARTITIONS 2 (
         PARTITION p0 VALUES LESS THAN (1990),

Thread
svn commit - mysqldoc@docsrva: r1519 - trunk/refman-5.1jon5 Mar