List:Commits« Previous MessageNext Message »
From:paul Date:April 13 2007 6:33pm
Subject:svn commit - mysqldoc@docsrva: r5889 - in trunk: . refman-5.0 refman-5.1
View as plain text  
Author: paul
Date: 2007-04-13 20:33:45 +0200 (Fri, 13 Apr 2007)
New Revision: 5889

Log:
 r23429@polar:  paul | 2007-04-13 13:29:08 -0500
 Document bugfixes:
 Bug#18326
 Bug#20376
 Bug#25494
 Bug#26207
 Bug#26257
 Bug#26782


Modified:
   trunk/refman-5.0/releasenotes-cs-5.0.xml
   trunk/refman-5.0/releasenotes-es-5.0.xml
   trunk/refman-5.1/news-5.1.xml

Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:23415
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:19072
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:23429
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:19072
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593


Modified: trunk/refman-5.0/releasenotes-cs-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-cs-5.0.xml	2007-04-13 17:35:11 UTC (rev 5888)
+++ trunk/refman-5.0/releasenotes-cs-5.0.xml	2007-04-13 18:33:45 UTC (rev 5889)
Changed blocks: 1, Lines Added: 8, Lines Deleted: 0; 760 bytes

@@ -204,6 +204,14 @@
 
       <listitem>
         <para>
+          On Windows, if the server was installed as a service, it did
+          not auto-detect the location of the data directory. (Bug
+          #20376)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           If the duplicate key value was present in the table,
           <literal>INSERT ... ON DUPLICATE KEY UPDATE</literal> reported
           a row count indicating that a record was updated, even when no


Modified: trunk/refman-5.0/releasenotes-es-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-es-5.0.xml	2007-04-13 17:35:11 UTC (rev 5888)
+++ trunk/refman-5.0/releasenotes-es-5.0.xml	2007-04-13 18:33:45 UTC (rev 5889)
Changed blocks: 2, Lines Added: 24, Lines Deleted: 0; 1541 bytes

@@ -326,6 +326,22 @@
 
       <listitem>
         <para>
+          For <literal>INSERT INTO ... SELECT</literal> where index
+          searches used column prefixes, insert errors could occur when
+          key value type conversion was done. (Bug #26207)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          For <literal>SHOW ENGINE INNODB STATUS</literal>, the
+          <literal>LATEST DEADLOCK INFORMATION</literal> was not always
+          cleared properly. (Bug #25494)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           <literal>mysqldump</literal> could crash or exhibit incorrect
           behavior when some options were given very long values, such
           as <option>--fields-terminated-by="<replaceable>some very long

@@ -1714,6 +1730,14 @@
 
       <listitem>
         <para>
+          On Windows, if the server was installed as a service, it did
+          not auto-detect the location of the data directory. (Bug
+          #20376)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           If the duplicate key value was present in the table,
           <literal>INSERT ... ON DUPLICATE KEY UPDATE</literal> reported
           a row count indicating that a record was updated, even when no


Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml	2007-04-13 17:35:11 UTC (rev 5888)
+++ trunk/refman-5.1/news-5.1.xml	2007-04-13 18:33:45 UTC (rev 5889)
Changed blocks: 2, Lines Added: 48, Lines Deleted: 0; 2193 bytes

@@ -385,6 +385,47 @@
 
       <listitem>
         <para>
+          If the name of a table given to <command>myisamchk
+          -rq</command> was a packed table and the name included the
+          <filename>.MYI</filename> extension,
+          <command>myisamchk</command> incorrectly created a file with a
+          <filename>.MYI.MYI</filename> extension. (Bug #26782)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          For <literal>INSERT INTO ... SELECT</literal> where index
+          searches used column prefixes, insert errors could occur when
+          key value type conversion was done. (Bug #26207)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          For <literal>SHOW ENGINE INNODB STATUS</literal>, the
+          <literal>LATEST DEADLOCK INFORMATION</literal> was not always
+          cleared properly. (Bug #25494)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          On Windows, if the server was installed as a service, it did
+          not auto-detect the location of the data directory. (Bug
+          #20376)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          The <literal>FEDERATED</literal> engine did not allow the
+          local and remote tables to have different names. (Bug #26257)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           The <literal>NO_DIR_IN_CREATE</literal> server SQL mode was
           not enforced for partitioned tables. (Bug #24663)
         </para>

@@ -1495,6 +1536,13 @@
 
       <listitem>
         <para>
+          While preparing prepared statements, the server acquired
+          unnecessary table write locks. (Bug #18326)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           For some operations, system tables in the
           <literal>mysql</literal> database must be accessed. For
           example, the <literal>HELP</literal> statement requires the


Thread
svn commit - mysqldoc@docsrva: r5889 - in trunk: . refman-5.0 refman-5.1paul13 Apr