List:Commits« Previous MessageNext Message »
From:paul Date:August 3 2006 8:22pm
Subject:svn commit - mysqldoc@docsrva: r2945 - in trunk: . refman-5.0 refman-5.1 refman-common
View as plain text  
Author: paul
Date: 2006-08-03 20:22:26 +0200 (Thu, 03 Aug 2006)
New Revision: 2945

Log:
 r13259@frost:  paul | 2006-08-03 13:21:46 -0500
 Document bugfixes:
 Bug#10877
 Bug#14448
 Bug#19147
 Bug#21080
 Bug#21215


Modified:
   trunk/refman-5.0/client-utility-programs.xml
   trunk/refman-5.1/client-utility-programs.xml
   trunk/refman-common/news-5.0.xml
   trunk/refman-common/news-5.1.xml

Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:12466
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:13256
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:9385
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:12466
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:13259
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:9385


Modified: trunk/refman-5.0/client-utility-programs.xml
===================================================================
--- trunk/refman-5.0/client-utility-programs.xml	2006-08-03 17:33:26 UTC (rev 2944)
+++ trunk/refman-5.0/client-utility-programs.xml	2006-08-03 18:22:26 UTC (rev 2945)
Changed blocks: 1, Lines Added: 4, Lines Deleted: 0; 715 bytes

@@ -5176,6 +5176,10 @@
                 <entry>A counter that increments for each statement you
issue</entry>
               </row>
               <row>
+                <entry><literal>\l</literal></entry>
+                <entry>The current delimiter. (New in 5.0.25)</entry>
+              </row>
+              <row>
                 <entry><literal>\S</literal></entry>
                 <entry>Semicolon</entry>
               </row>


Modified: trunk/refman-5.1/client-utility-programs.xml
===================================================================
--- trunk/refman-5.1/client-utility-programs.xml	2006-08-03 17:33:26 UTC (rev 2944)
+++ trunk/refman-5.1/client-utility-programs.xml	2006-08-03 18:22:26 UTC (rev 2945)
Changed blocks: 1, Lines Added: 4, Lines Deleted: 0; 715 bytes

@@ -5170,6 +5170,10 @@
                 <entry>A counter that increments for each statement you
issue</entry>
               </row>
               <row>
+                <entry><literal>\l</literal></entry>
+                <entry>The current delimiter. (New in 5.1.12)</entry>
+              </row>
+              <row>
                 <entry><literal>\S</literal></entry>
                 <entry>Semicolon</entry>
               </row>


Modified: trunk/refman-common/news-5.0.xml
===================================================================
--- trunk/refman-common/news-5.0.xml	2006-08-03 17:33:26 UTC (rev 2944)
+++ trunk/refman-common/news-5.0.xml	2006-08-03 18:22:26 UTC (rev 2945)
Changed blocks: 3, Lines Added: 57, Lines Deleted: 0; 2801 bytes

@@ -195,6 +195,27 @@
 
       <listitem>
         <para>
+          The <command>mysql</command> client now allows
+          <literal>\l</literal> in the <literal>prompt</literal>
command
+          argument to insert the current delimiter into the prompt. (Bug
+          #14448)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          For <command>mysqlshow</command>, if a database name argument
+          contains wildcard characters (such as
+          &lsquo;<literal>_</literal>&rsquo;) but matches a single
+          database name exactly, treat the name as a literal name. This
+          allows a command such as <command>mysqlshow
+          information_schema</command> work without having to escape the
+          wildcard character. (Bug #19147)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           If a <literal>DROP VIEW</literal> statement named multiple
           views, it stopped with an error if a non-existent view was
           named and did not drop the remaining views. Now it continues

@@ -235,6 +256,22 @@
 
       <listitem>
         <para>
+          For a successful dump, <command>mysqldump</command> now writes
+          a SQL comment to the end of the dump file in the following
+          format:
+        </para>
+
+<programlisting>
+-- Dump completed on YYYY-MM-DD hh:mm:ss
+</programlisting>
+
+        <para>
+          (Bug #10877)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           The <command>mysqld</command> and
           <command>mysqlmanager</command> manpages have been
           reclassified from volume 1 to volume 8. (Bug #21220)

@@ -373,6 +410,26 @@
 
       <listitem>
         <para>
+          The <option>--master-data</option> option for
+          <command>mysqldump</command> requires certain privileges, but
+          <command>mysqldump</command> generated a truncated dump file
+          without producing an appropriate error message or exit status
+          if the invoking user did not have those privileges. (Bug
+          #21215)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <literal>ALTER VIEW</literal> did not retain existing values
+          of attributes that had been originally specified but were not
+          changed in the <literal>ALTER VIEW</literal> statement. (Bug
+          #21080)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           <command>mysql</command> crashed for very long arguments to
           the <literal>connect</literal> command. (Bug #21042)
         </para>


Modified: trunk/refman-common/news-5.1.xml
===================================================================
--- trunk/refman-common/news-5.1.xml	2006-08-03 17:33:26 UTC (rev 2944)
+++ trunk/refman-common/news-5.1.xml	2006-08-03 18:22:26 UTC (rev 2945)
Changed blocks: 1, Lines Added: 9, Lines Deleted: 0; 806 bytes

@@ -432,6 +432,15 @@
 
       <listitem>
         <para>
+          <literal>ALTER VIEW</literal> did not retain existing values
+          of attributes that had been originally specified but were not
+          changed in the <literal>ALTER VIEW</literal> statement. (Bug
+          #21080)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           With mixed-format binary logging, <literal>INSERT
           DELAYED</literal> statements were logged using statement-based
           logging, and they did not replicate properly for statements


Thread
svn commit - mysqldoc@docsrva: r2945 - in trunk: . refman-5.0 refman-5.1 refman-commonpaul3 Aug