From: Date: May 13 2006 1:29am Subject: svn commit - mysqldoc@docsrva: r2081 - trunk/refman-5.1 List-Archive: http://lists.mysql.com/commits/6322 Message-Id: <200605122329.k4CNTx1w001219@docsrva.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 @@ CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name (create_definition,...) + [table_options] [partition_options] - [table_options] @@ -1789,8 +1789,8 @@ CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,...)] - [partition_options] - [table_options] select_statement + [table_options] + [partition_options] select_statement