List:Commits« Previous MessageNext Message »
From:jon Date:May 13 2006 1:29am
Subject:svn commit - mysqldoc@docsrva: r2081 - trunk/refman-5.1
View as plain text  
Author: jstephens
Date: 2006-05-13 01:29:58 +0200 (Sat, 13 May 2006)
New Revision: 2081

Log:

Fixing Docs Bug #19625 (order of clauses was incorrect in CREATE TABLE)



Modified:
   trunk/refman-5.1/sql-syntax.xml

Modified: trunk/refman-5.1/sql-syntax.xml
===================================================================
--- trunk/refman-5.1/sql-syntax.xml	2006-05-12 20:16:34 UTC (rev 2080)
+++ trunk/refman-5.1/sql-syntax.xml	2006-05-12 23:29:58 UTC (rev 2081)
@@ -1778,8 +1778,8 @@
 <programlisting>
 CREATE [TEMPORARY] TABLE [IF NOT EXISTS] <replaceable>tbl_name</replaceable>
     (<replaceable>create_definition</replaceable>,...)
+    [<replaceable>table_options</replaceable>]
     [<replaceable>partition_options</replaceable>]
-    [<replaceable>table_options</replaceable>]
 </programlisting>
 
       <para>
@@ -1789,8 +1789,8 @@
 <programlisting>
 CREATE [TEMPORARY] TABLE [IF NOT EXISTS] <replaceable>tbl_name</replaceable>
     [(<replaceable>create_definition</replaceable>,...)]
-    [<replaceable>partition_options</replaceable>]
-    [<replaceable>table_options</replaceable>]
<replaceable>select_statement</replaceable>
+    [<replaceable>table_options</replaceable>]
+    [<replaceable>partition_options</replaceable>]
<replaceable>select_statement</replaceable>
 </programlisting>
 
       <para>

Thread
svn commit - mysqldoc@docsrva: r2081 - trunk/refman-5.1jon13 May